<!--
/* Special Functions for pechoc.com HomePage
   Package xT Package 
   Author:  Gerald Pechoc
   Version: 1.2
   Date:    2002-09-18
                                             */
                                             
   if (document.images){
   		
   		var offImgA = new Array()
   		offImgA["artist"] = new Image(276,828)
   		offImgA["artist"].src = "http://www.pechoc.com/pic/p6030112x.jpg"
   		offImgA["shadow"] = new Image(276,828)
   		offImgA["shadow"].src = "http://www.pechoc.com/pic/p6030112b.jpg"
   		
   		var offImgB = new Array()
   		offImgB["logo"] = new Image(800,200)
   		offImgB["logo"].src = "http://www.pechoc.com/pic/gplogo2.gif"
   		
   		var onImgA = new Array()
   		onImgA["artist"] = new Image(276,828)
   		onImgA["artist"].src = "http://www.pechoc.com/pic/p6030112v.jpg"
   		}
   		                                    
                                             
function imageStd( imgName )  {
   // Version  1.0
   // Date     2002-05-05
   //
   if (document.images){
   		document.images[imgName].src = onImgA[imgName].src
   		}
}

function imageHov( imgName )  {
   // Version  1.0
   // Date     2002-05-05
   //
   if (document.images){
   		document.images[imgName].src = offImgA[imgName].src
   		}
}

function SetMsg( msg )  {
   // Version  1.0
   // Date     2002-05-05
   //
   window.status = msg
   return true
}

// -->