<!-- hide
// create images
// images when mouse over and mouse out
var backcold  = new Image();
var backhot   = new Image();
var toccold   = new Image();
var tochot    = new Image();
var nextcold  = new Image();
var nexthot   = new Image();
var closecold = new Image();
var closehot  = new Image();

backcold.src = '/GRAPHICS/back-cold.gif';
backhot.src  = '/GRAPHICS/back-hot.gif';
toccold.src  = '/GRAPHICS/toc-cold.gif';
tochot.src   = '/GRAPHICS/toc-hot.gif';
nextcold.src = '/GRAPHICS/next-cold.gif';
nexthot.src  = '/GRAPHICS/next-hot.gif';
closecold.src  = '/GRAPHICS/close-cold.gif';
closehot.src  = '/GRAPHICS/close-hot.gif';

function roll(img,state) {
  if (state) {
     // if mouse is over the image
     // load the brighter image
     document.images[img].src = eval(img + 'hot.src');
   }
   else {
     // if mouse is not over the image
     // load the standard image
     document.images[img].src = eval(img + 'cold.src');
   }
}

//////////////////////////////////////////
// This opens the main magazine window. //
//////////////////////////////////////////
function openMag(url) { 
//   window.open(url,'messageWindow2','scrollbars=no,width=975,height=640,screenX=20,screenY=20,top=20,left=20')
   window.open(url,'messageWindow2','toolbar=1,scrollbars=1,location=1,statusbar=1,menubar=1,resizable=1,width=975,height=640,screenX=20,screenY=20,top=20,left=20')
}

//////////////////////////////////////////////////////
// This function is to open images in the articles. //
//////////////////////////////////////////////////////
function openWindow(url,w,h) {
   w += 20;  
   h += 50;
   var options = "width=" + w + "," + "height=" + h;
   window.open (url,"",options);
}

// show -->
