function ScrollTop()
{
	if(location.href.substr(location.href.length-4, 4)=='#top')
	{
		self.location.hash="top";
	}
}

function image(url, width, height)
{
	var str = "height="+height+",innerHeight="+height;
	str += ",width="+width+",innerWidth="+width+",scrollbars=no,menubar=no,toolbar=no,status=no,resizable=no";
	str += ",left=0,screenX=0";
	str += ",top=0,screenY=0";
	var name = "";
	window.open(url, name, str);
}