window.name = "";
thisPopup = "";
function popwin(FILE, WIDTH, HEIGHT) {
	argsLength = popwin.arguments.length;
	if (argsLength <= 2) { // default width and height
		WIDTH = "190";
		HEIGHT = "72";
	}
  WIDTH  = (screen.width * (65/100));
	HEIGHT = (screen.height * (65/100));
	if (thisPopup) thisPopup.close();
	windowspecs = "toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,left=150,top=150,width="+WIDTH+",height="+HEIGHT+"";
	thisPopup = window.open(FILE, "", windowspecs);
	thisPopup.focus();
}

function musicplayerwindow(){
window.open("music_player.html","","height=72,width=190,menubar=0,scrollbars=0, status=0,titlebar=0,toolbar=0,left=150,top=150")
}



