var newWindow = null
function windowOpener(loadpos,surveywin)
{	
	if (! newWindow || newWindow.closed)
	{
 	newWindow = window.open(loadpos,surveywin,"resizable,scrollbars=yes,dependent,width=520,height=260 top=0 left=0");
	}else
	{
		newWindow.focus();
	}
}

function survey(FormVote)
{
    var tmpFormVote = eval("document."+FormVote);
	tmpFormVote.submit(); 
}
function popWin(theURL)
{ //v2.0
  window.open(theURL,'','top=0,left=0,width=520,height=250,resizable=yes,scrollbars=yes');
}