/* author: AkimVital */
/* Creation date: 02.01.04 */
<!--

window.changeClass = function (obj, setClass)
{
	obj.className = setClass;
}

window.siteMenuClick = function (object)
{
	if (object.getElementsByTagName('A')[0].click)
		return object.getElementsByTagName('A')[0].click();
	else
		location.href = object.getElementsByTagName('A')[0].href;
}

window.showImage = function (picture_id, w, h)
{
	w = w+10;
	h = h+120;
	var url = "/showimage?picture_id="+picture_id;
	var win = popupwin(url, w, h, "_showimage");
}

function popupwin (url, w, h, windowName)
{
	var vleft = (screen.width?screen.width:screen.availWidth-w)/2;
	var vtop  = (screen.height?screen.height:screen.availHeight-h)/2-100;
	var wname = "popupwin";

	if (windowName)
		wname = wname + windowName;
	newWindow = window.open(url, wname, 'width='+w+',height='+h+',toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=1,resizable=1,left='+vleft+',top='+vtop);
	//newWindow.moveTo((window.screen.width-w)/2, (window.screen.height-h)/2);
	newWindow.focus();

	return newWindow;
}

// -->