function popUpSP() {props=window.open('pops/index.php', 'specialspops', 'toolbar=0, scrollbars=1, location=0, statusbar=0, menubar=0, resizable=1, width=582, height=440, left = 150, top = 25');
}

function popUpAF() {props=window.open('forms/autograph.php', 'contact', 'toolbar=0, scrollbars=0, location=0, statusbar=0, menubar=0, resizable=1, width=520, height=350, left = 150, top = 25');
}


function popUptaf() {props=window.open('taf/friend.php', 'tellafriend', 'toolbar=0, scrollbars=0, location=0, statusbar=0, menubar=0, resizable=1, width=640, height=380, left = 150, top = 25');
}

function popUprat() {props=window.open('http://www.b2k1.com/rateit/', 'rateit', 'toolbar=0, scrollbars=0, location=0, statusbar=0, menubar=0, resizable=1, width=225, height=180, left = 150, top = 25');
}

function popUp1() {
props=window.open('mp3players.html', 'MP3Players', 'toolbar=0, scrollbars=1, location=0, statusbar=0, menubar=0, resizable=0, width=655, height=405, left = 175, top = 100');
}

function selectCode(f){
document.forms[f].elements[0].focus();
document.forms[f].elements[0].select();
}

// Amazing Frameless Popup Window - Version I
// (C) 2000 www.CodeLifter.com
// Free for all users, but leave in this  header

// set the popup window width and height

var windowW=405 // wide
var windowH=655 // high

// set the screen position where the popup should appear

var windowX = 175 // from left
var windowY = 100 // from top

// set the url of the page to show in the popup

var urlPop = "mp3players.html"

// set the title of the page

var title =  "MP3 Players"

// set this to true if the popup should close
// upon leaving the launching page; else, false

var autoclose = true

// ============================
// do not edit below this line
// ============================

s = "width="+windowW+",height="+windowH;
var beIE = document.all?true:false

function openFrameless(){
  if (beIE){
    NFW = window.open("","popFrameless","fullscreen,"+s)     
    NFW.blur()
    window.focus()       
    NFW.resizeTo(windowW,windowH)
    NFW.moveTo(windowX,windowY)
    var frameString=""+
"<html>"+
"<head>"+
"<title>"+title+"</title>"+
"</head>"+
"<frameset rows='*,0' framespacing=0 border=0 frameborder=0>"+
"<frame name='top' src='"+urlPop+"' scrolling=auto>"+
"<frame name='bottom' src='about:blank' scrolling='no'>"+
"</frameset>"+
"</html>"
    NFW.document.open();
    NFW.document.write(frameString)
    NFW.document.close()
  } else {
    NFW=window.open(urlPop,"popFrameless","scrollbars,"+s)
    NFW.blur()
    window.focus() 
    NFW.resizeTo(windowW,windowH)
    NFW.moveTo(windowX,windowY)
  }   
  NFW.focus()   
  if (autoclose){
    window.onunload = function(){NFW.close()}
  }
}
function right(e) {
var msg = "Sorry, you don't have permission to right-click. If you feel you need something, then check out our Copyright link.\n\n  http://www.rleeermey.com/policy.php#copyright\n\nIf you are trying to download a sound or ringtone, then please disable your player so you can select Save when you click the link. If you do not disable the Streaming ability of your player plug-in, you will not be able to save the file.";
if (navigator.appName == 'Netscape' && e.which == 3) {
alert(msg);  // Delete this line to disable but not alert user
return false;
}
else
if (navigator.appName == 'Microsoft Internet Explorer' && event.button==2) {
alert(msg); // Delete this line to disable but not alert user
return false;
}
return true;
}
document.onmousedown = right;