	function PopUp(site,name,w,h){
		window.open(site,name,"width="+w+",height="+h);
	}

	function Screenshot(img,nazov,w,h) {
	var myWindow = window.open("",nazov,"width="+w+",height="+h);
	  myWindow.document.open();
  	myWindow.document.write("<HTML><HEAD>");
  	myWindow.document.write("<TITLE>" + nazov + "</TITLE><link rel='stylesheet' type='text/css' href='Templates/nocss.css' />");
  	myWindow.document.write("</HEAD><BODY class='extra' onload='focus();'>");
  	myWindow.document.write("<a href='#' onclick='window.close();'><IMG  HEIGHT='"+h+"' WIDTH='"+w+ "' SRC='Templates/Screenshots/" + img + "' /></a>");
  	myWindow.document.write("</BODY></HTML>");
  	myWindow.document.close();
  }

	function AddFav() {
		window.external.AddFavorite('http://www.acompp.sk/index.php','ACOM Poprad')
	}

  function toggle(w) {
    if (document.getElementById) {
      document.getElementById(w).style.display = document.getElementById(w).style.display == "none" ? "block" : "none";
    }
  }


  function hidesubs() {
    if (document.getElementById) {
      var subs = ["m1","m2"];
      for (i=0; i<subs.length; i++) { document.getElementById(subs[i]).style.display = "none"; }
    }
  }

  function w(img,w,h) {
 var myWindow = window.open("","","width="+w+",height="+h,"scrollbar=0;resizable=0");
	myWindow.document.open();
  myWindow.document.write("<HTML><HEAD>");
  myWindow.document.write("<TITLE>Detail</TITLE><link rel='stylesheet' type='text/css' href='Templates/nocss.css'>");
  myWindow.document.write("</HEAD><BODY class='body' marginheight='0' marginwidth='0' BGCOLOR='black' onload='focus();'>");
  myWindow.document.write("<a href='#' onclick='window.close();'><IMG  HEIGHT="+h+" WIDTH="+w+ " SRC=" + img + " border='0'></a>");
  myWindow.document.write("</BODY></HTML>");
  myWindow.document.close();
}

