/* New Window Defined */
function openWindow() {
window.open("","nW",'toolbar=0,location=0,menubar=0,scrollbars=0,width=770,height=570,resizable=0,top=0,left=0');
}

/* New Window IMG */
function fW(file,width,height){
var x=width;
var y=height
s='toolbar=0,location=0,directories=0,menubar=0,status=0,dependent=0,resizable=0'
s+=',width='+x+',height='+y+''

win2=window.open("","second",s);
win2.focus();
win2.document.open();
win2.document.writeln('<!doctype HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">');
win2.document.writeln('<html>');
win2.document.writeln('<head>');
win2.document.writeln('<title>Kotatko.net</title>');
win2.document.writeln('<link rel="StyleSheet" type="text/css" href="style.css">');
win2.document.writeln('</head>');
win2.document.writeln('<body>');
win2.document.writeln('<img src='+file+' alt"" width='+x+',height='+y+'>');
win2.document.writeln('</body>');
win2.document.writeln('</html>');
}



