// JavaScript Document
function newWindow3(windowUrl,windowWidth,windowHeight) {

var name="popup";
var features="Width=410,Height=340,top=100,left=200";
 features+=",menubar=no,scrollbars=no,location=no,status=no,directories=no,resizable=no"; 


var myNewWindow3=window.open('',name,features);
myNewWindow3.focus();

myNewWindow3.document.open();
myNewWindow3.document.write("<html>");
myNewWindow3.document.write("<head>");
myNewWindow3.document.write("<title>Specials</title>");
myNewWindow3.document.write("<meta http-equiv='Content-Type'content='text/html; charset=iso-8859-1'>");
myNewWindow3.document.write("<style type='text/css'>");
myNewWindow3.document.write("a:link{color:#FFFFFF; text-decoration:none; font=size:12px;}");
myNewWindow3.document.write("a:visited{color:#FFFFFF; text-decoration:none; font=size:12px;}");
myNewWindow3.document.write("a:hover{color:#FF33FF; text-decoration:underline; font=size:12px;}");
myNewWindow3.document.write("a:active{color:#FF33FF; text-decoration:underline; font=size:12px;}");
myNewWindow3.document.write("</style>");
myNewWindow3.document.write("</head>");
myNewWindow3.document.write("<body>");
myNewWindow3.document.write("<div>");
myNewWindow3.document.write("<object type='application/x-shockwave-flash' data='http://lupiwebdesign.com/musicstore/images/kosmicmovie.swf' width='400' height='100'><param name='movie' value='http://lupiwebdesign.com/musicstore/images/kosmicmovie.swf' /></object>");
myNewWindow3.document.write("<object type='application/x-shockwave-flash' data='http://lupiwebdesign.com/musicstore/images/kosmicspecial.swf' width='400' height='200'><param name='movie'value='http://lupiwebdesign.com/musicstore/images/kosmicspecial.swf' /></object>");
myNewWindow3.document.write("<span style='position:relative; bottom:0px;'><input type='button' value='close this window!' onClick='parent.close()'></span>");
myNewWindow3.document.write("</div>");
myNewWindow3.document.write("</body>");
myNewWindow3.document.write("</html>");
myNewWindow3.document.close();
}