﻿var width,height
var image,ext
var cond1,cond2

function transferview(image,imgwidth,imgheight) 
{
    var stringValue ="<TITLE>Image</TITLE>"
    stringValue +=""
    stringValue +="<CENTER><IMG SRC='"+image+"' width='"+imgwidth+"' height='"+imgheight+"' BORDER=0 ></CENTER>"

    ImageWindow=window.open("", "newwin"+imgwidth,"toolbar=no,scrollbars="+scroll+",menubar=no,"+imgwidth+",600");
    ImageWindow.document.write(stringValue);
    ImageWindow.document.close();
}