
function  js_poll(thispoll)
{

  window.open('report_pollsurvey.php','newwinpoll','width=350,height=350,menubar=no,scrollbars=no,status=no');
  return true;

}


//Special sizing for email client - KDL,6-12-01
function openWindow(url, name) {
	window.name="BackToParent";
	popupWin =window.open(url, name, "menubar=no,toolbar=no,location=no,resizable=no,dependent=yes,scrollbars,width=610,height=440,left=180,top=20,status=yes");
	if(window.focus) {
		popupWin.focus();
	}
}

//Special sizing for email client - KDL,6-12-01
function openMailWindow(url, name, thewidth, theheight) {
	window.name="BackToParent";
	popupWin =window.open(url, name, "menubar=no,toolbar=no,location=no,resizable=no,dependent=yes,scrollbars,width=300,height=150,left=180,top=20,status=yes");
	if(window.focus) {
		popupWin.focus();
	}
}

