function enlarge(picname,w,h) {
	x = (screen.availWidth - 12 - w) / 2;
	y = (screen.availHeight + 20 - h) / 2;

	popup = window.open('','','toolbar=no,location=no,directories=no,menubar=no,left=' + x + ',top=' + y + ',resizable=no,status=no,scrollbars=auto,width='+w+',height='+h); 
	popup.document.write('<HTML><title>Skiworld - céges erndezvények - képgaléria</title><BODY><div style="position: absolute; left: 0px; top: 0px; right:0px; bottom:0px;"><TABLE CELLPADDING=0 CELLSPACING=0 BORDER=0><TR VALIGN=MIDDLE><TD ALIGN=CENTER>'); 
	popup.document.write('<IMG SRC="'+picname+'" BORDER=0 OnClick=self.close() style="cursor: pointer;"></TR></TD></TABLE></div></BODY></HTML>'); 
	popup.document.close(); 
}

function ShowHideItem(sItemID, sState) {
  objItem = document.getElementById(sItemID);
  if(sState == "open"){
    objItem.style.display = "block";
  } else {
    objItem.style.display = "none";
  }
  return false;
}  

