<!------------------------------------------------------------------------
//
//  Copyright 2003 PuntoExe Consultores.  All Rights Reserved.
//
//  File:         Epiway.js
//
//----------------------------------------------------------------------->

var colBackground;

function mHndOvr(src){
   src.style.cursor = "hand"; }

function mHndOut(src){
   src.style.cursor = "default"; }

function mClick(src,trg){
   if (trg=="_self" || trg=="")
      { document.location.href = src; }
   else
      { if (trg=="_parent")
           { parent.location.href = src; }
	else
	   { if (trg=="_blank")
		{ window.open(src); }
	      else
		{ eval("parent." + trg + ".location.href = src"); }
            }
      }
   return false;
} 

function mChgImg(id,imgSrc){
   image = new Image();
   image.src = imgSrc;
   document.images[id].src=imgSrc; }

function mChgTxt(src,txtClr){
   if (!txtClr=="")
      { colBackground = src.bgColor; 
        src.bgColor   = txtClr;        }
   else
      { src.bgColor   = colBackground; }
}

function mChgBtn(id,imgSrc){
   eval('document.getElementById("' + id + '").background=imgSrc;');
   //document.all[id].background=imgSrc; 
}

function mChgSts(link){
   window.status = link;
   return true;
}

