﻿function openwindow(imagename){
<!-- 
nw = window.open("about:blank","",'left=150, top=20, width=620, height=620 resizable=0, scrollbars=no, menubar=no')
doc = nw.document;
doc.open('text/html');
doc.write('<html><head><title>stylartis.com<\/title>');
doc.write('<link rel="stylesheet" href="style.css" type="text/css">');
doc.write('<\/head><body background="imgs/back_pop.gif" style="margin:0px"><table width="620" height="620" valign="middle" border="0"><tr><td><center>');
doc.write('<a href=# onclick=self.close()><img src=' + imagename + ' alt="Close window" class="big_img" style="vertical-align:middle;"><\/a><\/center><\/td><\/tr><\/table>');
doc.write('<\/body><\/html>');
doc.close();
}
