function syas_popup()
{
//If the cookie does not exist this is a first time visit

if (document.cookie.indexOf("popup=true") == -1)  {

	expireDate = new Date
	expireDate.setMonth(expireDate.getMonth()+1)
	document.cookie = "popup=true; expires=" + expireDate.toGMTString();
	
	var w = 295;
	var h = 410;
	with(screen) popunder = window.open('http://www.homeinspections-usa.com/syas/popup.php3','Shortcut','alwaysRaised=yes,resizable=yes,scrollbars=no,menubar=no,width=' + w + ',height=' + h + ',left=' + ((availwidth - w - 10) * 0.5) + ',top=' + ((availheight - h - 30) * .5));
	popunder.blur();
	window.focus();
}
}


