<!--
function showMenu (id) {
	if (document.getElementById)//IE 4+, N6
	{
		if (document.getElementById("l"+id)) document.getElementById("l"+id).className = "menuOn";
//if (document.getElementById("-"+id)) document.getElementById("-"+id).className = "menuOn";
		if (document.getElementById("t"+id)) document.getElementById("t"+id).className = "visible";
	}
	else if (document.all)//IE -4
	{
		if (document.all("l"+id)) document.all("l"+id).className = "menuOn";
//if (document.all("-"+id)) document.all("-"+id).className = "menuOn";
		if (document.all("t"+id)) document.all("t"+id).className = "visible";
	}
}



//popup funkcija (nima zveze z menujem)
var okno = null;
var okno2 = null;
function popup(doc, w, h)
{
  	if (w == null) w = 580;
  	if (h == null) h = 530;
	if (okno==null || okno.closed) {
		okno=window.open(doc,"popup",'toolbar=no,width='+ w +',height='+ h +',resizable=yes,scrollbars=yes,directories=no,status=no,menubar=no,location=no');
		okno.creator = self;      
	}
	else {
		okno.location = doc;
		okno.focus();
	}
	
}

//popup brez scrollbarjev
function popup2(doc, w, h)
{
  	if (w == null) w = 880;
  	if (h == null) h = 550;
	if (okno2==null || okno2.closed) {
		okno2=window.open(doc,"popup2",'toolbar=no,width='+ w +',height='+ h +',resizable=no,scrollbars=yes,directories=no,status=no,menubar=no,location=no');
		okno2.creator = self;      
	}
	else {
		okno2.location = doc;
		okno2.focus();
	}
	
}

//fullscreen popup
function openfull(doc)
{
	if (okno==null || okno.closed) {
		okno=window.open(doc,"full",'fullscreen=yes,scrollbars=no');
		okno.creator = self;      
	}
	else {
		okno.location = doc;
		okno.focus();
	}
	
}

// -->

