function pltmh_midiplayer() {

newWindowMP('http://preciouslordtakemyhand.com/midi/player/preciouslordtakemyhand_midiplayer.html',600,360);

}

function pltmh_christmasmidiplayer() {

newWindowMP('http://preciouslordtakemyhand.com/midi/player/preciouslordtakemyhand_christmasmidiplayer.html',600,360);

}

function pltmh_eastermidiplayer() {

newWindowMP('http://preciouslordtakemyhand.com/midi/player/preciouslordtakemyhand_eastermidiplayer.html',600,360);

}

function newWindowMP(url, height, width) {
    nameW='feature'
	//xTop = screen.width/2 - (width/2);
	//yTop = screen.height/2 - (height/2);
xTop = 0;
yTop = 0;
	winopen=window.open(url, 'PopWin', 'height='+height+',width='+width+',scrollbars=1,resizable=0,menubar=0,toolbar=0,status=0,location=0,directories=0,left=' + xTop + ',top=' + yTop + '');
//winopen.focus();
}

function get_cookieMP(Name) {
  var search = Name + "="
  var returnvalue = "";
  if (document.cookie.length > 0) {
    offset = document.cookie.indexOf(search)
    if (offset != -1) { // if cookie exists
      offset += search.length
      // set index of beginning of value
      end = document.cookie.indexOf(";", offset);
      // set index of end of cookie value
      if (end == -1)
         end = document.cookie.length;
      returnvalue=unescape(document.cookie.substring(offset, end))
      }
   }
  return returnvalue;
}



function loadpopups_pltmh_midiplayer() {
if (get_cookieMP('poppedMP')==''){
pltmh_midiplayer()
document.cookie="poppedMP=yes"
}
}