// JavaScript Document

//--> Start Music Player Pop //
function openMusicPlayer() {
	var winw = 245;
	var winh = 400;
	var winl = (screen.width-winw)/2;
	var wint = (screen.height-winh)/2;
	if (winl < 0) winl = 0;
	if (wint < 0) wint = 0;
	var	locate = "showcase/index.html";
	var	win = window.open(locate,"Music","width="+winw+",height="+winh+",scrollbars=0,left="+winl+",top="+wint+"");
	win.focus();	
}
// END Music Player Pop <--//
