<!--
function open_new_window(url,w,h,scrollbars) {
winLeft = (screen.width-w)/2-20; 
winTop = (screen.height-h)/2-20; 
new_window = window.open(url,'my_window','scrollbars='+scrollbars+',toolbar=0,menubar=0,resizable=0,dependent=0,status=0,width='+w+',height='+h+',left='+winLeft+',top='+winTop);
}
function style_preview(url) {
self.name = "opener";
remote = open('styles.php?n='+url,"remote","resizable,width=450,height=750,left=10,top=10");
}
-->