
function OpenWindow(WinURL,WinHandle) {
		window.open(WinURL,WinHandle,'toolbar=yes,scrollbars=yes,location=no,directories=no,status=no,menubar=no,resizable=no,width=600,height=400');
//		return false;
	}

function openWin(winname,w,h){ 
xpos = screen.width; 
ypos = screen.height; 
win=window.open(""+winname, "openWinda", "height="+h+",width="+w+",top="+(ypos/2-h/2)+",left="+(xpos/2-w/2)+",screenX="+(xpos/2-w/2)+",screenY="+(ypos/2-h/2)+""); 
}