function launchSite(taal, alink){
	var url = "frames.php?t="+taal;
	
	if(alink!="")url += "&"+alink;

	var popupwidth = 960;
	var popupheight = 750;

		
	if((screen.availWidth > 1 && screen.availWidth < popupwidth) || window.screen.height < popupheight){
		document.location = "resolution.php?t="+taal;
		return;
	}

	document.location = url;
}