<!--

function getCookie(Name)
{	
	
	var search = Name + "=";
	
	if(document.cookie.length > 0)
	{	offset = document.cookie.indexOf(search);

		if(offset != -1)
		{	offset += search.length;
			end = document.cookie.indexOf(";", offset);

			if(end == -1) end = document.cookie.length;

			return unescape(document.cookie.substring(offset, end));
		}	
	}

	return "";
}


function setCookie(name, value, expire)
{	if(expire == null)
		expire = "";
	else
		expire = "expires=" + expire.toGMTString();

	document.cookie = name + "=" + escape(value) + ";" + expire + ";path=/;";
	
}



function doPopup()
{
	if(getCookie('voted') == '1')
		return;

	if(   location.href.substring(location.href.length-9, location.href.length) == 'index.htm'
		||location.href.substring(location.href.length-16, location.href.length) == 'visiballusa.com/')
		var xx = window.open("survey.htm","Survey", "width=300,height=380,resizeable=no,menubar=no,status=no,scrollbars=no");
}


//-->
