<!--
function openPictureWindow_Fever(imageName,alt,imageWidth,imageHeight) {
 
if ( (screen.width <= 800) )
{
windowleftposition = (screen.width) - (screen.width - 130);
windowtopposition = (screen.height) - (screen.height - 110);
}
 
if  (  ( screen.width > 800 ) && (screen.width <= 1024) )
{
windowleftposition = (screen.width) - (screen.width - 250);
windowtopposition = (screen.height) - (screen.height - 100);
}
 
if ( (screen.width > 1025 ) && ( screen.width <= 1152 ) )
{
windowleftposition = (screen.width) - (screen.width - 310);
windowtopposition = (screen.height) - (screen.height - 390);
}
 
if ( (screen.width > 1153 ) && ( screen.width <= 1280 ) )
{
windowleftposition = (screen.width) - (screen.width - 380);
windowtopposition = (screen.height) - (screen.height - 400);
}
 
if ( (screen.width > 1281 ) && ( screen.width <= 1600 ) )
{
windowleftposition = (screen.width) - (screen.width - 540);
windowtopposition = (screen.height) - (screen.height - 400);
}
newWindow =	   window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",left="+windowleftposition+",top="+windowtopposition);
newWindow.document.open();
newWindow.document.write('<html><Head><title>'+alt+'</title>'); 
newWindow.document.write('<META HTTP-EQUIV="imagetoolbar" CONTENT="no">');
newWindow.document.write('</Head>');
newWindow.document.write('<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">');
newWindow.document.write('<img src='+imageName+' width='+imageWidth+' height='+imageHeight+'>'); 
newWindow.document.write('</body></html>');
newWindow.document.close();
newWindow.focus();
  
}

if (window.Event) 
document.captureEvents(Event.MOUSEUP); 
function nocontextmenu()  
{
event.cancelBubble = true
event.returnValue = false;
return false;
}
function norightclick(e)	
{
if (window.Event)	
{
if (e.which == 2 || e.which == 3)
return false;
}
else
if (event.button == 2 || event.button == 3)
{
event.cancelBubble = true
event.returnValue = false;
return false;
}	
}
document.oncontextmenu = nocontextmenu;		
document.onmousedown = norightclick;		

var message="Content Copyright © Olympic Wall.  All rights reserved."; // Message for the alert box
function click(e) {
if (document.all) {
if (event.button == 2) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
//-->
