<!--
// Usage: <A HREF="javascript:pic('images/picture.jpg',picWidth,picHeight,'Window Title')">Link</A>
//                                'images/flowers.jpg',120,140,'Title'
//
function pic(src,width,height,title){
	  if (height==0){height=360;}
	  if (width==0){width=450;}
	  if (height>=1300 || width>=1300){height=height/3;width=width/3;}
	  if (title == ''){title = 'Default Title';}

	  var h = 0;
	  var topLX = ((screen.width - width) / 2);
	  var topLY = (((screen.height - (height + h)) / 2) - 20);

	  picWin =  window.open('','newWindow','top='+topLY+',left='+topLX+',width='+(width+50)+',height='+(height+70+h)+',toolbar=no,'+ 'location=no,status=no,menubar=no,resizable=no,scrollbars=no');
   	  temp = picWin.document;
	  temp.write('<HTML><HEAD><TITLE>'+title+'</TITLE></HEAD><BODY onBlur="self.close()" onLoad="self.focus()" bgcolor="#ffffff">');
	  temp.write('<center>');
	  temp.write('<a href="javascript:self.close()"><img src="'+src+'" name="pic" width="'+width+'" height="'+height+'" border=1 align=center onBlur="self.close()"></A>');
          temp.write('<BR><p><a href="javascript:self.close()">Close This Window</a>'+'</center>');
	  temp.write('</BODY></HTML>');
	  temp.close();
}

function stopthief(ie) 
{var warning = "Right clicking this page is not allowed.";
if (navigator.appName == 'Netscape' && ie.which == 3) {
alert(warning);
return false;
}
else
if (navigator.appName == 'Microsoft Internet Explorer' &&
event.button==2) {
alert(warning);
return false;
}
return true;
}
document.onmousedown = stopthief;

//-->
