// JScript::Window Make (c) 2004 Written by Vlad Zaritsky http://www.smena.net <!--
// Include: <script language="JavaScript" type="text/javascript" src="w_make.js"></script>
// Invoke: <a href="#" onClick="w_make('/url',100,100);return false;";>window</a>
function w_make( w_url, w_width, w_height )
{
 if( document.all ) var max_x=screen.width, max_y=screen.height; else if( document.layers ) var max_x = window.outerWidth, max_y=window.outerHeight; else var max_x=800, max_y=600;
 var xOffset=0, yOffset=0;
 photo = window.open( w_url,'','width='+max_x+',height='+max_y+',screenX='+xOffset+',screenY='+yOffset+',top='+yOffset+',left='+xOffset+',copyhistory=no,directories=no,menubar=no,location=no,scrollbars=yes,resizable=yes' );
 photo.focus();
}
//-->
