/*
windowopen.js
V 1.0
copyright Andrew Holt 
This script is free to use provided this notice remains.
Full instructions can be found @ http://www.webdevtips.com/webdevtips/js/openwindow.shtml
*/


function open_win(what_link,the_x,the_y,toolbar,addressbar,directories,statusbar,menubar,scrollbar,resize,history,pos,wname){ 
	
  HelpWindow = open(what_link, "HelpWindow", "width="+the_x+",height="+the_y+ ",screenX=0,left=0,screenY=0,top=0,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=1,status=0,toolbar=0,scrollbars=yes,location="+wname);
  if (HelpWindow.opener == null) HelpWindow.opener = window;
  HelpWindow.focus();
}