
var myPc = true;

function click(e)
{
   var message="Sorry, that function is disabled.\n\n \
                Contents & Graphics Copyright©Deborah's Designs\n";
   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;

function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}

MM_reloadPage(true);

/**************************************************
Pre-load images
**************************************************/
function preLoad()
{
   var images = new Array();
   preloadImages(images);
}

function preloadImages(images)
{
   for(loop = 0; loop < images.length; loop++)
   {
      var image = new Image();
      image.src = images[loop];
   }
}

function openWindow1(htmlimage)
{
   var message="running from pc ...\n";
   
   alert('Sorry, this feature not yet available.');
   //popupWin = window.open(htmlimage, 'event', 'width=531, height=540')
}
