function prepareOnDemand(){
  if( document.getElementById &&
      document.getElementsByTagName ){
    if( document.getElementById( 'onDemand' ) ){
      var links = document.getElementById( 'onDemand' ).getElementsByTagName( 'a' );
      for( var i=0; i < links.length; i++ ){
        if(links[i].className == 'sp' || links[i].className == 'text') {
          links[i].onclick = onDemandOpen;
        };
      }
    }
    if(document.getElementById('live_link')) document.getElementById('live_link').onclick = onDemandOpen;
    if(document.getElementById('live_link3')) document.getElementById('live_link3').onclick = onDemandOpen;
  }
}

function onDemandOpen(e) {
        var targ;
        if (!e) var e = window.event;
        if (e.target) targ = e.target;
        else if (e.srcElement) targ = e.srcElement;
        if (targ.nodeType == 3) // defeat Safari bug
                targ = targ.parentNode;
	if (targ.nodeName.toLowerCase() == 'img') targ = targ.parentNode;
        window.open(targ.href, 'welcome','width=560,height=410,scrollbars=no,statusbar=0')
        return false;
}

window.onload = function() {
        prepareOnDemand();
}


function launch_order(profile)
        {
	if(!profile)
		var location = "/order/";
	else
		var location = "/order/?profile=" + profile;

        media_player=window.open
   (location,"hk_order_form",'statusbar=0,toolbar=0,menubar=0,scrollbars=1,resizable=yes,width=570,height=470');	
  }

function launch_support()
        {
		var location = "https://www.hiskidsradio.net/order/support/";

        media_player=window.open
   (location,"hk_order_form",'statusbar=0,toolbar=0,menubar=0,scrollbars=1,resizable=yes,width=570,height=470');	
  }
