function winControl (ev) {

	pollForm.target = "pollPop";
	
	if ( self.name != "pollPop" ) {
	
		pollPop = window.open ("about:blank", "pollPop", "width=300,height=300,resizable=yes,scrollbars=yes");
	
	}
	
	if (document.layers) return routeEvent(ev);
	
	return true;

}

pollForm = document.forms[document.forms.length - 1]

if (document.layers) {

	window.captureEvents (Event.SUBMIT);
	window.onSubmit = winControl;

} else {

	document.forms[document.forms.length - 1].onsubmit = winControl;

}
