
<!-- function right(e) { if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2)) return false; else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3)) { alert("Click my logo to return Home."); return false; } return true; } document.onmousedown=right; if (document.layers) window.captureEvents(Event.MOUSEDOWN); window.onmousedown=right; 
// End --> 

	function popFrame(imageName,imageWidth,imageHeight,alt,bgcolor) {
	newWindow = window.open("popwindow.html","newWindow","width="+imageWidth+",height="+imageHeight);
	newWindow.document.open();
	newWindow.document.write('<html><title>'+alt+'</title><body leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" bgcolor='+bgcolor+' onBlur="self.close()" onClick="self.close()">');  
	newWindow.document.write('<table width='+imageWidth+' border="0" cellspacing="0" cellpadding="0" align="center" height='+imageHeight+' ><tr><td>');
	newWindow.document.write('<img src="'+imageName+'" width='+imageWidth+' height='+imageHeight+' alt="click to close" >'); 
	newWindow.document.write('</td></tr></table></body></html>');
	newWindow.document.close();
	newWindow.focus();
	}

function popWin(x,y){
theWindow=window.open(x,y,"height=400,width=700,toolbar=1,scrollbars=1,status=0,location=0,resizable=1")
 }
 //x=URL in href below
 //y=new instance of window (just named for future uses.
 
 <!--I want the nouveau windows to stretch to the size of the screen, so I'll use the available h and w-->
	var breadth = screen.availWidth;
	var heighth = screen.availHeight; 
	var stretchNew = null; 
 
 
 function openFlash(x,y) {
  stretchNew = window.open(x,y,'resizable=yes,toolbar=no,scrollbars=no,status=no','top=0,left=0,width=' + (breadth - 10) + ',height=' + (heighth - 35));
}