<!--

function mShow(mname)
{
	var o = document.getElementById(mname);
	o.style.visibility='visible';
}

function mHide(mname)
{
	var o = document.getElementById(mname);
	o.style.visibility='hidden';
}

function over(obj)
{
	obj.className = "mover";
}

function out(obj)
{
	obj.className = "mout";
}

function do_click(obj)
{
	window.location = obj.all.tags("a")[0].href;
}

function popupWin(file,width,height)
{
	var left = (screen.width-width)/2;
    var top = (screen.height-height)/2 - 50;
	window.open(file,"win","scrollbars=no,width="+width+",height="+height+",left="+left+",top="+top);
}

function edit(df)
{
	var w = 640;
    var h = 480;
    var t = (screen.height - h) / 2;
    var l = (screen.width - w) / 2;
	window.open("/catalog/edit.php?df="+df,"ed","width="+w+",height="+h+",left="+l+",top="+t+",resizable=yes");
}

function showNew(id,cf)
{
	var w = 400;
    var h = 300;
    var t = (screen.height - h) / 2;
    var l = (screen.width - w) / 2;
	window.open("/news/new.php?cfg_file="+cf+"&id="+id,"ed","width="+w+",height="+h+",left="+l+",top="+t+",resizable=yes");
}

//-->
