function Go(link)
{
    document.location=link;
	return true;
}

function CGo(link, mesg)
{
    if (confirm(mesg))
	{
		document.location=link;
		return true;
	}
}

function _v(id)
{
    return document.getElementById(id);
}
function Show(img, w, h)
{
    if (!w)
	{
	    w = 100;	
	}
	if (!h)
	{
	    h = 100;	
	}
	window.open('/showimg.php?img='+img,'popup','resizable=1,left=0,top=0, width='+w+', height='+h+', scrollbars=yes'); 	
}