// JavaScript Document
function goto(path) {
//content = document.getElementById(content).innerHTML;
	var l = (screen.availWidth-10 - 550) / 2 ;
	var t = (screen.availHeight-20 - 550) / 2 ;
//	window.open("popup_web/"+path,"","top="+t+"left="+l+"height=690,width=750,status=no,menubar=0,resizable=0, scrollbars=0, toolbar=0");

window.open(path, '_blank','top='+t+', left='+l+', height=580, width=610, status=no, menubar=no, resizable=no, scrollbars=yes, toolbar=no, location=no, directories=no');

	return false;
}



