function checkCookie(vLink)
{
	var WM_acceptsCookies = false;

	document.cookie = 'WM_acceptsCookies=yes;'; // Try to set a cookie.
	if(document.cookie.indexOf('WM_acceptsCookies=yes') != -1) 
	{
		document.cookie = 'WM_acceptCookies=yes;expires=January 1, 1980';
		WM_acceptsCookies = true;
	}
	if (!WM_acceptsCookies && vLink == "default.asp")
	{
		window.location.href = "homesearch/colorado/Restrict.asp?Message=Cookies Disabled";	
	}
	else if (WM_acceptsCookies == true && vLink == "default.asp")
	{
		window.location.href = "Access.asp";
	}
	else if (!WM_acceptsCookies)
	{
		//window.location.href = "Restrict.asp?Message=The cookies should be enabled in your browser before you proceed with verynicehomes.com. If you need help on how to enable cookies in your browser then please click on the links below.<br><br><a href=http://www.microsoft.com/info/cookies.htm>Internet Explorer - How to enable cookies</a><br><a href=http://help.netscape.com/kb/consumer/19970226-2.html>Netscape Navigator - How to enable cookies</a>";
		window.location.href = "Restrict.asp?Message=Cookies Disabled";
	}
	
}

function maximizeWindow(vLink)
{
	window.open(vLink, "","top=0,left=0,location=yes,menubar=yes,resizable=yes,scrollbars=yes,status=yes,titlebar=yes,toolbar=yes,outerHeight='" + screen.availHeight + "' ,outerWidth='" + screen.availWidth + "'");
	//window.open(vLink, "","top=0,left=0,height=600,width=800,location=yes,menubar=yes,resizable=yes,scrollbars=yes,status=yes,titlebar=yes,toolbar=yes'");
}