
	
	function newWindow() 
	{
	window.open("","new","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=350,height=350");
	}
	
	function MM_jumpMenu(targ,selObj,restore)
	{ //v3.0
	eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
	if (restore) selObj.selectedIndex=0;
	}
	
	function MM_jumpMenu(targ,selObj,restore)
	{ //v3.0
	eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
	if (restore) selObj.selectedIndex=0;
	}
	

	
	function newWin(pageUrl, pageHeight, pageWidth)
	{
	theWin=window.open(pageUrl, "", "toolbar=0,toolbar=no,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=" + pageWidth + ",height=" + pageHeight); 
	// checks to see if the user is using netscape, the following code puts the new
	// window in front of the old window
	if(navigator.appName=='Netscape') 
		{
			theWin.focus();
		} // if using netscape
	} // newWin function
	
	function newWinWSCROLL(pageUrl, pageHeight, pageWidth)
	{
	theWin=window.open(pageUrl, "", "toolbar=0,toolbar=no,location=0,directories=0,status=1,menubar=0,scrollbars=0,resizable=1,width=" + pageWidth + ",height=" + pageHeight); 
	// checks to see if the user is using netscape, the following code puts the new
	// window in front of the old window
	if(navigator.appName=='Netscape') 
		{
			theWin.focus();
		} // if using netscape
	} // newWin function
	
	function newWinOrderDetail(pageUrl, pageHeight, pageWidth)
	{
	theWin=window.open(pageUrl, "", "toolbar=0,toolbar=no,location=0,directories=0,status=0,menubar=1,scrollbars=1,resizable=1,width=" + pageWidth + ",height=" + pageHeight); 
	// checks to see if the user is using netscape, the following code puts the new
	// window in front of the old window
	if(navigator.appName=='Netscape') 
		{
			theWin.focus();
		} // if using netscape
	} // newWin function
	
	

	function close_window()
	{
		window.close();
	}
