var buf="";
function pict(ImgName){
buf="";
myWin=window.open("","Elements",'width='+250+',height='+250+',titlebar=no,toolbar=no,directories=no,status=no,scrollbars=auto,resizable=no,menubar=no');
buf+='<html>'+'<body bgcolor=#D6B890 topmargin=0 marginheight=0 leftmargin=0 marginwidth=0>'+'<img src="'+ImgName+'" border=0>'+'</body></html>';
myWin.document.write(buf);
myWin.document.close();
myWin.window.focus();
}

