<!--
// image-console functions

function show(HREF, Width, Height, count) {
    var url='show.htm?' + HREF + '&' + Width + '&' + Height;
    var win='toolbar=0,location=0,status=0,menubar=0,directories=0,resizable=0,scrollbars=1,target=_new';

    var sizedwin=win + ',width=' + Width + ',height=' + Height;

	var windowname = 'Image_Window_' + count;
	open(url, windowname, sizedwin);
    return false;
}
// -->

