// -----------------------------------------------------------------------------------
//
//	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";
 }
}
window.onload = externalLinks;

	function getFlashMovie(movieName) {   
    var isIE = navigator.appName.indexOf("Microsoft") != -1;   
    return (isIE) ? window[movieName] : document[movieName];
  }
  function playSound(movieid){
    var swf = getFlashMovie(movieid);
    swf.playsound();
    //document.getElementById("dbg").innerHTML+=swf;
  }