var message="";
function clickIE() {
     if (document.all) {
          (message);
          return false;
     }
}
function clickNS(e) {
     if (document.layers || (document.getElementById && !document.all)) {
          if (e.which==2 || e.which==3) {
               (message);
               return false;
          }
     }
}
if (document.layers) {
     document.captureEvents(Event.MOUSEDOWN);
     document.onmousedown = clickNS;
} else {
     document.onmouseup = clickNS;
     document.oncontextmenu = clickIE;
}
document.oncontextmenu = new Function("return false")

function aprifin(url) {
  newWin= window.open(url, 'win', 'top=150, left=100, width=580, height=400, status=no, location=no, resize=no, scrollbars=yes');
  newWin.focus();
}

function aprifin2(url) {
  newWin2= window.open(url, 'win2', 'top=150, left=100, width=400, height=300, status=no, location=no, resize=no, scrollbars=yes');
  newWin2.focus();
}

function playlist(url) {
	  newWin3= window.open(url, 'win3', 'top=150, left=100, width=400, height=300, status=no, location=no, resize=no, scrollbars=yes');
	  newWin3.focus();
}
