function popuppoll(id) {
	if (id == -1)  {
		openurl = "black.cfm"; 
	}
	else{
		openurl = "viewpolls.cfm?PollID=" + id + "&ViewResult=1";		
	}

	windowReference =  MM_openBrWindow(openurl,'poll_popup','toolbar=no,location=no,location=no,scrollbars=no,width=550,height=400'); 
	
	do {
		 i = 1 + 1;
	} while (windowReference.document.readyState != 'complete')
	
	windowReference.focus();
}	