
function ShowPicture(url,title,width,height)
{
	var features = "toolbar=0,location=0,directoties=0,status=0,menubar=0,scrollbars=no,resizable=yes,width="+(width)+",height="+height+",left="+(screen.availWidth-width)/2+",top="+(screen.availHeight-height)/2;
	var w=window.open("/picture.php?url="+url+"&title="+title+"&width="+width+"px"+"&height="+height, '', features);
}

function mouseover(_this)
{
	if (_this.className == "border")
	{
		_this.className = "border_hover";
	}
}

function mouseout(_this)
{
	if (_this.className == "border_hover")
	{
		_this.className = "border";
	}
}