function playerOpen(directory,artist,number) {
	var wo = window.open('','MusicPlayer','width=610,height=480,resizable=0,scrollbars=0');
	var html = "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"\n";
	html += "\t\"http://www.w3.org/TR/html4/loose.dtd\">\n";
	html += "<html>\n";
	html += "<head>\n";
	html += "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n";
	html += "<title>Music Player : moumoon OFFICIAL WEBSITE</title>\n";
	html += "<meta http-equiv=\"Content-Style-Type\" content=\"text/css\">\n";
	html += "<meta http-equiv=\"Content-Script-Type\" content=\"text/javascript\">\n";
	html += "<style type=\"text/css\">\n";
	html += "<!--\n";
	html += "body {\n";
	html += "\tmargin:0;\n";
	html += "\tpadding:0;\n";
	html += "\t}\n";
	html += "-->\n";
	html += "</style>\n";
	html += "<script type=\"text/javascript\">\n";
	html += "<!--\n";
	html += "var script = \"<script\";\n";
	html += "script += \" type='text/javascript'\";\n";
	html += "script += \" src='" + directory + "objects.js'>\";\n";
	html += "script += \"</\" + \"script>\";\n";
	html += "document.write(script);\n";
	html += "// -->\n";
	html += "</script>\n";
	html += "</head>\n";
	html += "<body id=\"mp\">\n";
	html += "<div id=\"mpcol\">\n";
	html += "<script type=\"text/javascript\">\n";
	html += "<!--\n";
	html += "var timerID = setInterval(\"flashWrite('" + directory + "','" + artist + "','" + number + "')\", 1000);\n";
	html += "// -->\n";
	html += "</script>\n";
	//
	wo.document.write(html);
	//wo.document.close();
	wo.focus();
}
