function openMediaplayer(itemid)
{ 
	var myUrl = 'http://player.omroep.nl/?aflID='+ itemid
	var myOptions = "resizable=yes,status=no,menubar=no,toolbar=no,width=780,height=575"; 
	window.open(myUrl,'kroMediaplayer',myOptions); 
} // openmediaPlayer

function openMediaplayerwopid(itemid)
{ 
	var myUrl = 'http://player.omroep.nl/?wopid='+ itemid
	var myOptions = "resizable=yes,status=no,menubar=no,toolbar=no,width=780,height=575"; 
	window.open(myUrl,'kroMediaplayer',myOptions); 
} // openmediaPlayer

function openMediaplayerSerID(itemid)
{ 
	var myUrl = 'http://player.omroep.nl/?serid='+ itemid
	var myOptions = "resizable=yes,status=no,menubar=no,toolbar=no,width=780,height=575"; 
	window.open(myUrl,'kroMediaplayer',myOptions); 
} // openmediaPlayer

function printPage()
{
    print();
}


	    	startList = function() {
	    	   if (document.all&&document.getElementById) {
	    	      navRoot = document.getElementById("tabs");
	    	      for (i=0; i<navRoot.childNodes.length; i++) {
	    	         node = navRoot.childNodes[i];
	    	         if (node.nodeName=="LI") {
	    	            node.onmouseover=function() {
	    	               this.className+=" over";
	    	            }
	    	            node.onmouseout=function() {
	    	               this.className=this.className.replace(" over", "");
	    	            }
	    	         }
	    	      }
	    	   }
	    	}
	    	window.onload=startList;
