function goUrl(url) {
location.href=url;
}
function GetBg(obj){
        obj.style.background='#D2FF78';
        obj.style.borderBottom='#FFFFFF 1px solid';
	
        }
function OutBg(obj){
        obj.style.background='#FFFFFF';
        obj.style.borderBottom='#696969 1px solid';
	
        }

function imgOpen(imgURL,imgWidth,imgHeight,imgTitle)
{
if (!imgTitle) imgTitle=imgURL+": "+imgWidth+'x'+imgHeight;
var imgWndw=window.open('','_blank','width='+imgWidth+',height='+imgHeight+',toolbar=no,menubar=no,'+'location=no,status=no,resizable=no,scrollbars=no');
with (imgWndw.document){
  open();
  write('<ht'+'ml><he'+'ad>');
  write ('<ti'+'tle>'+imgTitle+'</ti'+'tle>');
  write('</he'+'ad><bo'+'dy leftmargin=0 topmargin=0 rightmargin=0 '+'bottommargin=0 marginwidth=0 marginheight=0><img src="'+imgURL+'" width='+imgWidth+' height='+imgHeight+' border=0'+' alt="'+imgTitle+'"></bo'+'dy></ht'+'ml>');
  close();
}
}
