/* Script to open a window for the pictures*/
/* John Maher, March 2009 */

var win=null;
function Show_url(_url, _name, ht, wh, tp, lt)
{
options="height=" +ht+ ", " + "width=" +wh+ ",top= " +tp+ ",left="  +lt+ ", resizable=yes, scrollbars=yes, menubar=no, status=no";
			win=window.open(_url, _name, options);
}