function WOpen(oURL, iWidth, iHeight)
{
  var iLeft = (screen.width  - iWidth) / 2 ;
  var iTop  = (screen.height - iHeight) / 2 ;

  var   sOptions = "toolbar=yes, status=no, resizable=no, dependent=yes, scrollbars=yes" ;
        sOptions += ",width="   + iWidth ; 
        sOptions += ",height="  + iHeight ;
        sOptions += ",left="    + iLeft ;
        sOptions += ",top="     + iTop ;

        var oWindow = window.open(oURL, '', sOptions); 

  return true;
}

function iOpen(oURL, iWidth, iHeight, dTitle)
{
  var iLeft = (screen.width  - iWidth) / 2 ;
  var iTop  = (screen.height - iHeight) / 2 ;
  var sOptions = "toolbar=no, status=no, resizable=no, dependent=yes, scrollbars=no";
      sOptions += ",width="   + iWidth ; 
      sOptions += ",height="  + iHeight ;
      sOptions += ",left="    + iLeft ;
      sOptions += ",top="     + iTop ;

  var oWindow = window.open('', '', sOptions); 

  oWindow.document.open();
  oWindow.document.write('<html><head><title>'+dTitle+'</title></head><body bgcolor="#FFFFFF"><img src="'+oURL+'"></body></html>');
  oWindow.document.close();

  return oWindow;
}

function change(img,ref) {
 if (document.images)
   document.images[img].src=ref;
}

if (document.images){
 var home = new Image; 
 home.src = "m_home_a.gif";
 var about = new Image; 
 about.src = "m_about_a.gif";
 var catalog = new Image; 
 catalog.src = "m_catalog_a.gif";
 var news = new Image; 
 news.src = "m_news_a.gif";
 var article = new Image; 
 article.src = "m_article_a.gif";
 var shop = new Image; 
 shop.src = "m_shop_a.gif";
}

