function show(path,width,height,title)
{
var config='height='+height+',width='+width+', directories=no,location=no,menubar=no,status=no,toolbar=no,top=50,left=100';
var w=window.open('','',config);

w.document.write('<html><body leftmargin="0" topmargin="0">');
w.document.write('<img src='+path+' height='+height+' width='+width+'>');
w.document.write('</body></html>');
w.document.title=title;
w.document.close();
}

