<!--

isMozilla = (document.all) ? 0 : 1;

function popup( url, winname, width, height ) {
	if (winname == "") winname = "popup";
	if (width == "") width = "400";
	if (height == "") height = "300";
	var top = (screen.height) / 2 - (height / 2);
	var left = (screen.width) / 2 - (width / 2);
	var win_arg = "scrollbars=yes,status=yes,resizable=yes,location=no,toolbar=no,width=" + width + ",height=" + height + ",top=" + top + ",left=" + left;
	window.open(url,winname,win_arg);
}

function ShowLayer(divname) {
	document.getElementById(divname).style.display = "block";
}
function HideLayer(divname) {
	document.getElementById(divname).style.display = "none";
}


function ShowFloatLayer(divname) {
	document.getElementById(divname).style.visibility = "visible";
}
function HideFloatLayer(divname) {
	document.getElementById(divname).style.visibility = "hidden";
}


function MarkCheckbox(fldname) {
	tmp = document.getElementsByName(fldname);
	for (i=0; i<tmp.length; i++) {
		if (tmp[i].checked) tmp[i].checked = false;
		else tmp[i].checked = true;
	}
}


function imgpopup( picid, winname, width, height ) {
  if (width == "")  width = 450;
  if (height == "")  height = 500;
  if (winname == "")  winname = "popup";
  var top = screen.height / 2 - height;
  var left = screen.width / 2 - width;
  var win_arg = "scrollbars=no,status=no,location=no,toolbar=no,resizable=yes,width=" + width + ",height=" + height + ",top=" + top + ",left=" + left;
  window.open('photo.php?s=img&picid='+picid, winname, win_arg);
}



function SubMenu(id) {
	if (document.getElementById('submenu_'+id).style.display == 'none') {
		document.getElementById('submenu_'+id).style.display = 'block';
		document.getElementById('amenu_'+id).style.background = "#FFE19B";
	}
	else {
		document.getElementById('submenu_'+id).style.display = 'none';
		document.getElementById('amenu_'+id).style.background = "#FFEDC2";
	}
}

//-->