﻿
function imgWin(url) { 
newWin = window.open ('', '', 'toolbar=0,scrollbars=0,location=0,statusbar=1,menubar=0,resizable=0,width=600,height=400'); 
pageCode = "<html><head><style type='text/css'>body {margin:0; padding:0; border:0;}</style></head>"; 
pageCode += "<body><img src='" + url + "'></body></html>"; 
newWin.document.write(pageCode); 
newWin.document.close(); 
} 


