// JavaScript Document
function OpenWindow(strURL) {         
var objWindow = window.open(strURL,"InfoDetail","scrollbars=no,height=500,width=400,left=10,top=10");         
objWindow.focus();
}

<!--//
function openWindow() {
window.open("","JSL",'toolbar=0,location=0,scrollbars=0,width=300,height=300,resizable=0,top=20,left=20');
}
//-->
