function openNewWin(strUrl,strName,width,height)
{
var win;
win=window.open(strUrl,strName,"toolbar=no,left=2,top=2,width="+width+",height="+height+",menubar=no,scrollbars=yes,resizable=yes,status=yes,center=yes");
win.focus();
}
function openNewWinno(strUrl,strName,width,height)
{
var win;
win=window.open(strUrl,strName,"toolbar=no,left=250,top=150,width="+width+",height="+height+",menubar=no,scrollbars=yes,resizable=no,status=yes,center=yes");
win.focus();
}
function openNewWinfull(strUrl,strName,width,height)
{
var win;
var width=screen.width;
var height=screen.height;
win=window.open(strUrl,strName,"toolbar=no,left=2,top=2,width="+width+",height="+height+",menubar=no,scrollbars=yes,resizable=yes,status=yes,center=yes");
win.focus();
}
function opendialog(strUrl,width,height){
//var width=100;
//var height=50;
window.showModalDialog(strUrl,"","dialogWidth="+width+"px;dialogHeight="+height+"px;status=no;help=no;scollbars=no")
}
<script src="js/openwin.js"></script>