// -----------------------------------------------------------------------------------
//
//	CZECH MULTIMEDIA INTERACTIVE funkce JS
//
// -----------------------------------------------------------------------------------

function openWin(URL,targ,w,h) {
  window.open(URL, targ, 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width='+w+',height='+h);
}

function openWin2(url, width, height, attributes) { var Win = window.open(url,'popup','width='+width+',height='+height+','+attributes); }

function externalLinks() {
 if (!document.getElementsByTagName) return;
 var anchors = document.getElementsByTagName("a");
 for (var i=0; i<anchors.length; i++) {
   var anchor = anchors[i];
   if (anchor.getAttribute("href") &&
       anchor.getAttribute("rel") == "external")
     anchor.target = "_blank";
   if (anchor.getAttribute("rel") == "produkty")
     anchor.setAttribute("href", "javascript:go()");
 }
}
window.onload = externalLinks;
