function OpenWin(theUrl)
{
window.open(theUrl,\'\',\'menubar=no, z-look=yes, scrollbars=no, toolbar=no, status=yes, resizable=no, width=400, height=300\');
}
function OpenWin(theUrl,width,heigh)
{
window.open(theUrl,\'\',\'menubar=no, z-look=yes, scrollbars=yes, toolbar=no, status=yes, resizable=no, width=\'+ width +\', height=\'+heigh);
}
调用:javascript:OpenWin(\'页面\',600,800);