var width,height
var image,ext
var cond1,cond2
function transferview(image,width,height,alt) {
if (width==0) cond1=" "
else cond1="width="+(width+40)+"";
if (height==0) {cond2=" "};
else {cond2="height="+(height+40)+""};

var s1 ="<TITLE>'"+alt+"'</TITLE>"
var s15=""
var s2 ="<CENTER><IMG SRC='"+image+"' ALT='"+alt+"' BORDER=0>"

ImageWindow=window.open("", "newwin"+width,"toolbar=no,scrollbars=no,status="+scroll+",menubar=no,"+cond1+","+cond2);
ImageWindow.document.write(s1+s15+s2)
ImageWindow.document.close()
}

