<!--

/**************************************************
Author: Eric King

URL:    http://redrival.com/eak/index.shtml

Name of script:

		EAK's NewWindow Script V2

leave this info in if you want to use the script.
do not alter or edit this script with out written 
permision. 
**************************************************/

var win=null;
function NewWindow(mypage,myname,w,h,scroll,pos){

	
	if((pos!="center" && pos!="random") || pos==null){
		LeftPosition=0;
		TopPosition=20}

	settings='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable';
	win=window.open(mypage,myname,settings);
	if(win.focus){win.focus();}}

// -->
