/*
Auto center window script- Eric King (http://redrival.com/eak/index.shtml)
Permission granted to Dynamic Drive to feature script in archive
For full source, usage terms, and 100's more DHTML scripts, visit http://dynamicdrive.com
*/

var win = null;
function leftWindow(mypage,myname,w,h,scroll){
settings =
'height='+h+',width='+w+',top=0,left=0,scrollbars='+scroll+',toolbar=yes,menubar=yes,directories=yes,location=yes,status=yes,resizable'
win = window.open(mypage,myname,settings)
if(win.window.focus){win.window.focus();}
}