function OpenWin(URL,h,w) {
	newWindow=window.open(URL,"","height="+h+",width="+w+",resizable=1, scrollbars=1");
	}
	
function writeAddr() {
	// Build the address
	var i,a=writeAddr.arguments,addr="";
	addr += a[0]+"@";
	for( i=1; i<a.length; i++ ) {
		if( i>1 ) addr += ".";
		addr += a[i];
	}
	// Write html to the browser with the email address
	document.write("<a href=\"mailto:" 
		+ addr + "\">" + addr + "</a>");
}	

function PollOpenWin(URL,h,w) {
	newWindow=window.open(URL,"","height="+h+",width="+w+",resizable=1, scrollbars=1");
	}


 
