// JavaScript Document
function popWindow(windowUrl,windowWidth,windowHeight){
var features="Width=650,Height=500,top=50,left=20";
features+=",menubar=no,scrollbars=no,status=no,directories=no,resizable=no";
var myPopWindow=window.open('',name,features);
myPopWindow.focus();
myPopWindow.document.open();
myPopWindow.document.write("<html>");
myPopWindow.document.write("<head>");
myPopWindow.document.write("<title>Kosmic Sound Solar System</title>");
myPopWindow.document.write("<meta http-equiv='Content-Type'content='text/html; charset=iso-8859-1'>");
myPopWindow.document.write("</head>");
myPopWindow.document.write("<body bgcolor='#000'>");
myPopWindow.document.write("<div style='text-align: center'>");
myPopWindow.document.write("<object type='application/x-shockwave-flash' data='http://musicstore.lupiwebdesign.com/images/solarsystem.swf' width='650' height='500'><param name='wmode' value='transparent' /><param name='movie' value='http://musicstore.lupiwebdesign.com/images/solarsystem.swf' /></object>");
myPopWindow.document.write("</div>");
myPopWindow.document.write("</body>");
myPopWindow.document.write("</html>");
myPopWindow.document.close();

}