<!--
// Begin with setting flag = false. Just incase someone tries
// to invoke a rollover without it first being preloaded.

function popWin(width, height, name, url) {
	
	// Open our window with the preferences given above.
	ourWindow = window.open(url, name, ' width='+width+', height='+height+',location=no, menubar=no, status=no, toolbar=no, scrollbars=yes, resizable=no');
	ourWindow.focus();
	
}

//-->