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

var name="popup";
var features="Width=650,Height=610,top=50,left=150";
 features+=",menubar=no,scrollbars=no,location=no,status=no,directories=no,resizable=no"; 


var myNewWindow1=window.open('',name,features);
myNewWindow1.focus();
myNewWindow1.document.open();
myNewWindow1.document.write("<html>");
myNewWindow1.document.write("<head>");
myNewWindow1.document.write("<title>Photosk</title>");
myNewWindow1.document.write("<meta http-equiv='Content-Type'content='text/html; charset=iso-8859-1'>");
myNewWindow1.document.write("<script src='java/photocube.js'></script>");
myNewWindow1.document.write("<script type='text/javascript' src='java/contact.js'></script>");
myNewWindow1.document.write("<style type='text/css'>");
myNewWindow1.document.write("a:link{color:#FFFFFF; text-decoration:none; font=size:12px;}");
myNewWindow1.document.write("a:visited{color:#FFFFFF; text-decoration:none; font=size:12px;}");
myNewWindow1.document.write("a:hover{color:#FF33FF; text-decoration:underline; font=size:12px;}");
myNewWindow1.document.write("a:active{color:#FF33FF; text-decoration:underline; font=size:12px;}");
myNewWindow1.document.write("</style>");
myNewWindow1.document.write("</head>");
myNewWindow1.document.write("<body background='images/b1.gif'>");
myNewWindow1.document.write("<div align='center'>");
myNewWindow1.document.write("<span style='position:relative;top:1px; font-family:sans-serif; color: #F9B106; font-size: 12px;'>Fun...fun...fun  at Kosmic</span>&nbsp;&nbsp; ");
myNewWindow1.document.write("<span style='position:relative;top:1px; font-family:sans-serif; color: #F9B106; font-size: 12px;'>Past and present employees of Kosmic</span>");
myNewWindow1.document.write("<br><img src='images/kos.jpg' name='cube'  border=0  alt='Kosmics party' style='filter:progid:DXImageTransform.Microsoft.Stretch(stretchStyle='PUSH')'> ");
myNewWindow1.document.write("<br><span style='position:relative;bottom:1px; font-family:sans-serif; color: #FFFFFF; font-size: 12px;'>Need a Logo, Graphic, Web design, Photo Effects just let me know and I'll may do it for you.....<a href='javascript: newWindow()' title='Contact'>Contact</a></span>");
myNewWindow1.document.write("<div class='box' style='float: left; color: #ffffff; margin-bottom: 10px; width: 620px; border: thin solid #006600;'>");
myNewWindow1.document.write("<div style='height: 120px; border-bottom: thin solid #6600FF;'>");
myNewWindow1.document.write("<div style='float: left;'><img src='images/macfire.png' width='102' height='120' alt=''  /></div>");
myNewWindow1.document.write("<div class='box'><b>Mackies at KosmicSound are on fire be quick before they burnout call (08) 9204 7577 or shop on line http://onlinemusicstore.com.au  Kosmic Sound is one of the best shops in the world.</b></div></div></div></div>");
myNewWindow1.document.write("<form>");
myNewWindow1.document.write("<span style='position:relative; bottom:0px;'><input type='button' value='close this window!' onClick='parent.close()'></span>");
myNewWindow1.document.write("</form>");
myNewWindow1.document.write("</body>");
myNewWindow1.document.write("</html>");
myNewWindow1.document.close();
}