//JK Popup Window Script (version 3.0)- By JavaScript Kit (http://www.javascriptkit.com)
//Visit JavaScriptKit.com for free JavaScripts
//This notice must stay intact for legal use
//Win Type: Pop Under | Session Only

var desMusicURL = 'http://'+desCookieDomain+'/music/?type=2';

function get_cookie(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 toggleMusicPopUp() {
  if (!get_cookie('jkpopup')=='') {
    document.cookie="jkpopupClose=yes; domain="+desCookieDomain+"; path=/";
    document.cookie="jkpopup=no; expires=Thu, 01-Jan-1970 00:00:01 GMT; domain="+desCookieDomain+"; path=/";  
  } else {
    var winpops=window.open(desMusicURL,"","width=310px,height=20px");
    document.cookie="jkpopupClose=no; expires=Thu, 01-Jan-1970 00:00:01 GMT; domain="+desCookieDomain+"; path=/";
    winpops.blur();
//    window.focus();
  }
}
