//<!--
function showTop()
{
	//Position the topBox. In this example I am just centering it on the screen
	//boxWidth = 510;
	//boxHeight = 510;

	//screenWidth=document.all?document.body.clientWidth:window.innerWidth;
	//screenHeight=document.all?document.body.clientHeight:window.innerHeight;
	
	//xPos = (screenWidth - boxWidth) * 0.5;
	//yPos = (screenHeight - boxHeight) * 0.5;
	
	
	//document.getElementById('survey-topbox').style.left=xPos;
	//document.getElementById('survey-topbox').style.top=yPos;

	//Show the background overlay and topbox...
	document.getElementById('survey-screenoverlay').style.visibility = 'visible';
	document.getElementById('survey-topbox').style.visibility = 'visible';
}

function delayedShowTop(seconds)
{
	setTimeout("showTop()", seconds*1000);
}

function closeTop()
{
	//Hide the overlay and tobox...
	document.getElementById('survey-screenoverlay').style.visibility = 'hidden';
	document.getElementById('survey-topbox').style.visibility = 'hidden';
}
function closeTop2()
{
	//Hide the overlay and tobox...
	document.getElementById('survey-screenoverlay').style.visibility = 'hidden';
	document.getElementById('survey-topbox').style.visibility = 'hidden';
	window.location = 'http://www.surveymonkey.com/s.aspx?sm=PHbnV56fEUNm_2b7vyIElBsg_3d_3d'
}
function closeTop3()
{
	//Hide the overlay and tobox...
	document.getElementById('survey-screenoverlay').style.visibility = 'hidden';
	document.getElementById('survey-topbox').style.visibility = 'hidden';
	window.location = 'http://www.projo.com/'
}
//-->