<!-- 
var popUp;

function openthewindow(filename)	
{

if (navigator.appName == "Netscape")
	{					
	popUp = window.open(filename, 'popUp','resizable=yes,scrollbars=yes,menubar=yes,left=135,top=200,width=500,height=400');	
	popUp.window.focus();
	return false; //added 10/23/01 gtaitano
	}
else 
	{
	//check for open window
	if (popUp)
		{
		popUp.close();
		}					
	popUp = window.open(filename, 'popUp','resizable=yes,scrollbars=yes,menubar=yes,left=135,top=200,width=500,height=400');	
	popUp.focus();
	return false; //added 10/23/01 gtaitano
	}
}		

//-  HUMAN RESOURCES WINDOW POP-UPS  2005AUG -------------------------------------------------------------------
var wide; 
var high;
var Xpoint;
var Ypoint;

function openHelpWindow(filename, size)	
{
	if (size == "full")
	{ wide = 520;
	  high = 600;  }
	else
	{ wide = 520;
	  high = 450;  }
	  
	Xpoint = screen.width-(wide+20);
	Ypoint = 10;
	
	attributes = "resizeable=yes";
	attributes += ",scrollbars=yes";
	attributes += ",menubar=no";
	attributes += ",width=" + wide;
	attributes += ",height=" + high;
	attributes += ",left=" + Xpoint;
	attributes += ",top=" + Ypoint;
	
if (navigator.appName == "Netscape")
	{					
	popUp = window.open(filename,'popUp',attributes);	
	popUp.window.focus();
	return false; 
	}
else 
	{
	//check for open window
	if (popUp)
	 { popUp.close();	}					
	
	popUp = window.open(filename,'popUp',attributes);	
	
	popUp.focus();
	
	return false; 
	}
}
//-- END openHelpWindow


function openthewindowDefinition(filename)  //This is for the definition popups of keywords
{	

if (navigator.appName == "Netscape")
	{					
	popUp = window.open(filename, 'popUp','resizable=no,scrollbars=no,menubar=no,left=180,top=100,width=350,height=280');	
	popUp.window.focus();
	return false;
	}
else 
	{
	//check for open window
	if (popUp)
		{
		popUp.close();
		}					
	popUp = window.open(filename, 'popUp','resizable=no,scrollbars=no,menubar=no,left=180,top=100,width=350,height=280');	
	popUp.focus();  //unremarked & revised -deleted window ref -by Broca 12/17/01
	return false;
	}
}


function openthewindowSUPPLEMENTAL(filename)	
{
	wide = 680;
	high = 440;
	Xpoint = screen.width - (wide + 20)
	Ypoint = 10
	
	position = "width=" + wide + ",height=" + high + ",left=" + Xpoint + ",top=" + Ypoint;
	
if (navigator.appName == "Netscape")
	{					
	popUp = window.open(filename, 'popUp','resizable=yes,scrollbars=no,menubar=no,' + position);	
	popUp.window.focus();
	return false; //added 10/23/01 gtaitano
	}
else 
	{
	//check for open window
	if (popUp)
		{
		popUp.close();
		}					
	popUp = window.open(filename, 'popUp','resizable=yes,scrollbars=yes,menubar=yes,' + position);	
	popUp.focus(); //eliminated window ref 12/18/01 broca/gtaitano
	return false; //added 10/23/01 gtaitano
	}
}
//-- END openthewindowSUPPLEMENTAL


function openthewindowRESUME(filename)	
{

	wide = 490;
	high = 440;
	Xpoint = screen.width - (wide + 20)
	Ypoint = 10
	
	position = "width=" + wide + ",height=" + high + ",left=" + Xpoint + ",top=" + Ypoint;
	
if (navigator.appName == "Netscape")
	{					
	popUp = window.open(filename, 'popUp','resizable=yes,scrollbars=yes,menubar=yes,' + position);	
	popUp.window.focus();
	return false; //added 10/23/01 gtaitano
	}
else 
	{
	//check for open window
	if (popUp)
		{
		popUp.close();
		}					
	popUp = window.open(filename, 'popUp','resizable=yes,scrollbars=yes,menubar=yes,' + position);	
	popUp.focus(); //eliminated window ref 12/18/01 broca/gtaitano
	return false; //added 10/23/01 gtaitano
	}
}
//-- END openthewindowRESUME

function openthewindowPRINTING(filename)	
{
	wide = 480;
	high = 550;
	Xpoint = screen.width - (wide + 50)
	Ypoint = 30
	
	position = "width=" + wide + ",height=" + high + ",left=" + Xpoint + ",top=" + Ypoint;
	
if (navigator.appName == "Netscape")
	{					
	popUp = window.open(filename, 'popUp','resizable=yes,scrollbars=yes,menubar=yes,' + position);	
	popUp.window.focus();
	return false; //added 10/23/01 gtaitano
	}
else 
	{
	//check for open window
	if (popUp)
		{
		popUp.close();
		}					
	popUp = window.open(filename, 'popUp','resizable=yes,scrollbars=yes,menubar=yes,' + position);	
	popUp.focus(); //eliminated window ref 12/18/01 broca/gtaitano
	return false; //added 10/23/01 gtaitano
	}
}
//-- END openthewindowPRINTING

function openthewindowDOCS(filename)	
{
	wide = 690; //480;
	high = 250;	//550;
	Xpoint = screen.width - (wide + 50)
	Ypoint = 30
	
	position = "width=" + wide + ",height=" + high + ",left=" + Xpoint + ",top=" + Ypoint;
	
if (navigator.appName == "Netscape")
	{					
	popUp = window.open(filename, 'popUp','resizable=yes,scrollbars=yes,menubar=no,' + position);	
	popUp.window.focus();
	return false; //added 10/23/01 gtaitano
	}
else 
	{
	//check for open window
	if ( popUp ) 
	  { popUp.close(); }					
		
	popUp = window.open(filename, 'THIS','resizable=yes,scrollbars=yes,menubar=no,' + position);	
	popUp.focus(); //eliminated window ref 12/18/01 broca/gtaitano
	return false; //added 10/23/01 gtaitano
	}
}
//-- END openthewindowDOCS


//--  END -- HUMAN RESOURCES WINDOW POP-UPS  ---------------------------------------------------------------------


//-->