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

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


var myNewWindow=window.open('',name,features);
myNewWindow.focus();
myNewWindow.document.open();
myNewWindow.document.write("<html>");
myNewWindow.document.write("<head>");
myNewWindow.document.write("<title>contact</title>");
myNewWindow.document.write("<meta http-equiv='Content-Type'content='text/html; charset=iso-8859-1'>");
myNewWindow.document.write("<style type='text/css'>");
myNewWindow.document.write(".back{background-attachment: fixed; background-image: url(images/b1.gif); background-repeat: repeat; scrollbar-face-color:#999999; scrollbar-shadow-color:#666666; scrollbar-arrow-color:#CCCCCC; scrollbar-base-color:#666666;}"); 
myNewWindow.document.write(".p{font-family: Arial, Helvetica, sans-serif;font-size: 12px;color: #FFCC00;}");
myNewWindow.document.write("a:link{color:#FFFFFF; text-decoration:none; font=size:12px;}");
myNewWindow.document.write("a:visited{color:#FFFFFF; text-decoration:none; font=size:12px;}");
myNewWindow.document.write("a:hover{color:#FF33FF; text-decoration:underline; font=size:12px;}");
myNewWindow.document.write("a:active{color:#FF33FF; text-decoration:underline; font=size:12px;}");
myNewWindow.document.write("</style>");
myNewWindow.document.write("</head>");
myNewWindow.document.write("<body class='back'>");
myNewWindow.document.write("<div align='center'>");
myNewWindow.document.write("<span style='position:relative;top:5px; font-family:sans-serif; color: #F9B106; font-size: 12px;'>If you want to contact me,</span><br>");
myNewWindow.document.write("<span style=' font-family:sans-serif; color: #F9B106; font-size: 12px;'>You can email me at <a href='mailto:piotrlus@iinet.net.au'>piotrlus@iinet.net.au </a>and I'll see what I can do</span><br>");
myNewWindow.document.write("<br><img src='images/alien.jpg' width='88' height='120' align='left'><br>");
myNewWindow.document.write("<div class='p'>Or simply write your message<br> in the box below<br> and click the button</div><br><br><br>");
myNewWindow.document.write("</div>");
myNewWindow.document.write("<form method=post action='http://www.iinet.net.au/bin/mail'>");
myNewWindow.document.write("<input type=hidden name='destination' value='piotrlus@iinet.net.au'>"); 
myNewWindow.document.write("<div class='p'><INPUT NAME='name' Size=45 Type='text'> Your Name<BR>");
myNewWindow.document.write("<INPUT NAME='email' Size=45 Type='text'> Your E-Mail Address<BR>");
myNewWindow.document.write("<INPUT TYPE='hidden' NAME='submitaddress' VALUE=''><BR>");
myNewWindow.document.write("<b>Write to me below:</b><BR>");
myNewWindow.document.write("<TEXTAREA NAME='feedback' ROWS=10 COLS=50 style='background-image: url(images/b1.gif)';div class='p';></TEXTAREA><BR>");
myNewWindow.document.write("<INPUT TYPE=submit Value='SEND'>");
myNewWindow.document.write("<INPUT TYPE=reset Value='CLEAR '>");
myNewWindow.document.write("</div></FORM>");
myNewWindow.document.write("<div align='center'>");
myNewWindow.document.write("<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.....</span>");
myNewWindow.document.write("<form>");
myNewWindow.document.write("<span style='position:relative; bottom:0px;'><input type='button' value='close this window!' onClick='parent.close()'></span>");
myNewWindow.document.write("</form>");
myNewWindow.document.write("</div>");
myNewWindow.document.write("</body>");
myNewWindow.document.write("</html>");
myNewWindow.document.close();
}