<!--
var i=0;
var okno;
function MM_openBrWindow(theURL,winName,features) { //v1.2
if (i==1) okno.close(); okno=window.open(theURL,winName,features); i=1;
}

function extendMenu(what){
	obj=document.getElementById('sec'+what);
	head = document.getElementById('head'+what);
	if (obj.style.display=='none'){
		obj.style.display='';
	}
	else{
		obj.style.display='none';
	}
}

function openPrintWindow(url) {
	window.open(url,"","toolbar=no,menubar=yes,scrollbars=yes,location=no,status=no,width=700,height=400,resizable=0")
}

//////////////////////////////// HUGO ///////////////////////////////

function openNewWindow(url,scroll,resize,iX,iY)
{
	if(scroll==1) {scroll_p="yes"} else{scroll_p="no"}
	if(resize==1) {resize_p="yes"} else{resize_p="no"}
	window.open(url,"blank","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars="+scroll_p+",resizable="+resize_p+",width="+iX+",height="+iY+",dependent=no");
}

function openNewWindowFull(url,scroll,resize)
{
	if(scroll==1) {scroll_p="yes"} else{scroll_p="no"}
	if(resize==1) {resize_p="yes"} else{resize_p="no"}
	iX=screen.availWidth-20;
	iY=screen.availHeight-30;
	u_xxx=window.open("","blank");
	u_xxx.close();
	u_xxx=window.open(url,"blank","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars="+scroll_p+",resizable="+resize_p+",width="+iX+",height="+iY+",dependent=no");
	u_xxx.moveTo(10,10);
	u_xxx.focus();
}

function w_pdf(url)
{
	u_xxx=window.open(url,"pdf","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=650,height=500,dependent=no");
	u_xxx.moveTo(10,10);
	u_xxx.focus();
}
//-->