// JavaScript Document
var clicked = 0;
var SuggestionClicked=0;
CheckCookie()

function SelectText(TextBox)
{
	if (clicked == 0)
	{	
		TextBox.value="";
		clicked =1;
	}
}
function SuggestionText(TextBox)
{
	if (SuggestionClicked == 0)
	{	
		TextBox.value="";
		SuggestionClicked =1;
	}
}


function LoadCookie(Name) 
{
	var search = Name + "="
	var Result = "";
	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;
			Result=unescape(document.cookie.substring(offset, end))
		}
	}
	return Result;
}

function CheckCookie()
{
	if (LoadCookie('WeArePop')=='')
	{
		loadpopunder()
		document.cookie="WeArePop=yes"
	}
}

function loadpopunder()
{
	win2=window.open("http://www.weareniagara.com","","width=800,height=510,scrollbars=yes,resizable=yes,menubar=yes,toolbar=yes,location=no,directories=no,resizable=yes,top=0,left=0")
	win2.blur()
	window.focus()
}
