function OpenWindow(winName, winTitle){
	var v = window.open (winName, winTitle,"top=120,left=250,menubar=auto,status=no,toolbar=no,height=610,width=780,scrollbars=yes,resizable=1");
	v.focus();
}

function OpenWindow1(winName, winTitle, top, left, height, width){
	window.open (winName, winTitle, "top="+top+",left="+left+",height="+height+",width="+width+",menubar=no,status=no,toolbar=no,scrollbars=no,resizable=no")
}
