/* 	newPopWindowA allows pop windows with different names and specified window options.  This function
	also alows the pop up to be positioned on the screen. 
	
	** This does not work in version 3 browsers
	
	How To use
	winURL = the location of the page you wish to put in the pop up
	winName = what you want to name the new pop up window
	winWidth = how wide you want your pop up to be
	winHeight = how long your pop window will be
	location = do you want to show the location bar [0 = no, 1 = yes]
	directories = do you want to show the Netscape Directory Buttons [0 = no, 1 = yes]
	status = do you want to display the browsers status bar [0 = no, 1 = yes]
	menubar = do you want to display the browser menu bar [0 = no, 1 = yes]
	scrollbars = do you want this pop up to have scroll bars [0 = no, 1 = yes]
	toolbar = do you want this pop up to have a tool bar [0 = no, 1 = yes]
	resizable = do you want this pop up to be resizable
	dependant = ? not sure but on all of the other functions it is set to 1
	top = Specifies the Y coordinate of the top left corner of the new window [ specified in pixels ]
	left = Specifies the X coordinate of the top left corner or the new window [ specified in pixels ]
	
	example of a link to a pop up with all options on
	<a href="javascript:newPopWindowA('fuelcell.html','pop_1','605','600','1','1','1','1','1','1','1','1','405','400')">launch pop</a>
	
	example of a link to a pop up with all options off
	<a href="javascript:newPopWindowA('fuelcell.html','pop_1','605','600','0','0','0','0','0','0','0','0','405','400')">launch pop</a>
*/


function email(winURL,winName,winWidth,winHeight,location,directories,status,menubar,scrollbars,toolbar,resizable,dependent,top,left) {
	winFeatures="'dummy=0,width="+winWidth+",height="+winHeight+",top="+top+",left="+left+",screenx="+top+",screeny="+left
	+",location="+location+",directories="+directories
	+",status="+status+",menubar="+menubar+",scrollbars="+scrollbars
	+",toolbar="+toolbar+",resizable="+resizable+",dependent="+dependent+"'";
	//alert('Window Features Are: '+winFeatures+'\nWindow Name = '+winName);
	showWindow=window.open(winURL+'?page_url='+document.location,winName,winFeatures);
	showWindow.focus();
}// end newPopWindowA

