// the following function is for the 'trailer' pop up window only (pauld, 19/04/04)	
function winOpen(sURL, popW, popH)
{
	var winLeft = (screen.width - popW) / 2;
	var winUp = (screen.height - popH) / 2;
	popWindow = window.open(sURL,"DisplayWindow","toolbar=no,width=" + popW + ",height=" + popH + ",left=" + winLeft + ",top=" + winUp + ",status=no,scrollbars=no,noresize,menubar=no"); 
  	popWindow.window.focus();
}

// end hiding -->