﻿// JScript File

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function popup(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, windowname, ',type=fullWindow,fullscreen,scrollbars=yes');
return false;
}

    function roll(id){

   var objSrc = id.src;
   var ext = (objSrc.indexOf(".jpg") != -1) ? ".jpg" : ".gif";
   var idLength = objSrc.length;

   if(objSrc.indexOf("_over") != -1){
      var path = objSrc.substr(0, idLength - 9);
      id.src = path + ext;
       id.style.cursor = 'pointer'
   } else {
      var path = objSrc.substr(0, idLength - 4);
      id.src = path + "_over" + ext;
      id.style.cursor = 'pointer'
   }

}
