// JavaScript Document

function openPollWindow(theURL)
{
	openBrWindow(theURL,'poll','toolbar=no,status=yes,scrollbars=yes,resizable=yes,width=550,height=500')
}

function openBrWindow(theURL,winName,features)
{
	win_obj = window.open(theURL,winName,features);
	win_obj.moveTo(Math.round((screen.availWidth-800)/2),Math.round((screen.availHeight-600)/2));
	win_obj.focus();
}



function closeWin() {

parent.close();
}

