


function Cornerwindow(where) {
NewWind=window.open((where),"NewWind","width=700,height=350,left=10,top=10,toolbar=yes,menubar=yes,location=yes,status=yes,scrollbars=yes,resizable=yes"); 
NewWind.focus()

}

function showabout(){
	document.all["about"].style.top=(screen.height-about.offsetHeight)-50;
	document.all["about"].style.left=(screen.width/6);
	document.all["about"].style.visibility="hidden";	
}
 function hideabout(){
	document.all["about"].style.visibility="hidden";
}

