smallWindow =
{
	left:"10px",
	top:"10px",
	width:"660px",
	height:"660px"
} // End smallWindow

/*
Purpose			: open a pop-up window
Parameters		: URLStr the URL we want to open
Dependencies	: object literal smallWindow defines pop-up window dimensions
Notes			: 
*/
var popUpWinContacts = 0;
function popUpWindow(URLStr)
{
	smallWindow.width = screen.width * (70/100);	
	smallWindow.height = screen.height * (95/100);		
	if(popUpWinContacts)
	{
		if(!popUpWinContacts.closed) popUpWinContacts.close();
	}
	popUpWinContacts = open(URLStr, 'popUpWinContacts', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+ smallWindow.width +',height='+ smallWindow.height +',left='+ smallWindow.left +', top='+ smallWindow.top +',screenX='+ smallWindow.width +',screenY='+ smallWindow.heigth +'');
} // End popUpWindow()

/*
Purpose			: open a pop-up window for promo card
Parameters		: URLStr the URL we want to open
Dependencies	: object literal smallWindow defines pop-up window dimensions
Notes			: 
*/
var popUpWinContacts0 = 0;
function popUpPromo(URLStr)
{
	smallWindow.width = screen.width * (100/100);	
	smallWindow.height = screen.height * (100/100);		
	if(popUpWinContacts0)
	{
		if(!popUpWinContacts0.closed) popUpWinContacts0.close();
	}
	
	popUpWinContacts0 = open(URLStr, 'popUpWinContacts0', 'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width='+ smallWindow.width +',height='+ smallWindow.height +',left='+ smallWindow.left +', top='+ smallWindow.top +',screenX='+ smallWindow.width +',screenY='+ smallWindow.heigth +'');
	
} // End popUpPromo()


