﻿// JScript File
/*
 * To open an Image window
 */
function windowopen(id, height, width)
{   return window.open('img.aspx?id=' + id, '_blank',
            'width=' + width + 
            ',height=' + height +
            ',menubar=0,location=0,resizable=0,scrollbars=0,directories=0,titlebar=0,status=0,toolbar=0');
}
