function GWinOpen(sGid,sImg,sEvent)
{

var newWin,url="",x=500,y=600;
 
 if (document.all)
         var xMax = screen.width, yMax = screen.height;
     else
         if (document.layers)
             var xMax = window.outerWidth, yMax = window.outerHeight;
         else
             var xMax = 640, yMax=480;

     var xOffset = (xMax - 420)/3, yOffset = (yMax - 360)/4;


url="/gallery/show.asp?Gid="+sGid+"&Img="+sImg+"&Event="+sEvent
	
//alert (url);
newWin=window.open(url,"WIN1","screenX="+xOffset+",screenY="+yOffset+",top="+yOffset+",left="+xOffset+",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width="+x+",height="+y );	

}

	
function winopen(sWin,sVal)
{

var newWin,url="",x=450,y=280;


 if (document.all)
         var xMax = screen.width, yMax = screen.height;
     else
         if (document.layers)
             var xMax = window.outerWidth, yMax = window.outerHeight;
         else
             var xMax = 640, yMax=480;

     var xOffset = (xMax - 420)/2, yOffset = (yMax - 360)/2;


if (sWin=="RAYVID") {    
	url="/artists/rayparish/video.asp?vid="+sVal;x=375;y=350;}
	
newWin=window.open(url,"WIN1","screenX="+xOffset+",screenY="+yOffset+",top="+yOffset+",left="+xOffset+",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width="+x+",height="+y );	

}

function winArt(sEvent,sVal)
{

var newWin,url="",x=450,y=280;


 if (document.all)
         var xMax = screen.width, yMax = screen.height;
     else
         if (document.layers)
             var xMax = window.outerWidth, yMax = window.outerHeight;
         else
             var xMax = 640, yMax=480;

     var xOffset = (xMax - 420)/2, yOffset = (yMax - 360)/2;


	url="/artists/artwork.aspx?event="+sEvent+sVal;x=475;y=500;	
	
	
newWin=window.open(url,"WIN1","screenX="+xOffset+",screenY="+yOffset+",top="+yOffset+",left="+xOffset+",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width="+x+",height="+y );	

}



