<!-- //
var winPopUps
function closeAll()
	{
	if(winPopUps && winPopUps.open && !winPopUps.closed) 
		{
		winPopUps.close() 
		}
	}
	
	
// popup  windows	
function openWinPopUps(theURL,winName,features) 
	{
	winPopUps=open(theURL,winName,features);
	return true;
	}

window.onunload= closeAll;
// -->
