
function portiPopup(url, name, w, h, mode) {  // no status bar, scroll bars, resizable
	var w = w - 0;
	var h = h - 0;

	if (mode == "fullscreen") {
		var winW = 0;
		var winH = 0;
		w = screen.width;
		h = screen.height;
	}
	else {
		var winW = (screen.width - w) / 2;
		var winH = (screen.height - h) / 2;
		w += 30;
		h += 30;
	}
	var win2 = window.open(url,name,'width='+w+',height='+h+',top='+winH+',left='+winW+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes');
	win2.focus();
}

//--- show/hide ----------------------------------

function showhide(div) {
	var styleObj = document.getElementById(div);
	if (styleObj.style.visibility == "visible")
		styleObj.style.visibility = "hidden";
	else styleObj.style.visibility = "visible";
}

function hide(div) {
	var styleObj = document.getElementById(div);
	styleObj.style.visibility = "hidden";
}