function GetCookie(name) {
    var arg=name+"=";
    var alen=arg.length;
    var clen=document.cookie.length;
    var i=0;
    while (i<clen) {
      var j=i+alen;
      if (document.cookie.substring(i,j)==arg)
      return "here";
      i=document.cookie.indexOf(" ",i)+1;
      if (i==0) break;
    }
  return null;
  }
  var visit=GetCookie("COOKIE2");
  if (visit==null){
    var expire=new Date();
    window.name = "thiswin2";
    newwin=open("http://www.musicontherocks.it/?page_id=372/", "dispwin2", "width=450,height=300,top=200,left=400,scrollbars=yes,menubar=no");
    expire=new Date(expire.getTime()+43200000);
    document.cookie="COOKIE2=here; expires="+expire;
  }

function MM_openMusicWindow(theURL,winName2,features) { 
	window.open("http://www.musicontherocks.it/?page_id=372/", "dispwin2",
			"width=450,height=300,top=200,left=400,scrollbars=yes,menubar=no");
	}

