
	
<!--
function show(href, Width, Height, count, scr) {
    //  
    var url=href;
    var win='toolbar=0,location=0,status=0,menubar=0,directories=0,resizable=0,scrollbars=0,target=_new';

    w=Width;
    h=Height;
    var sizedwin=win + ',width=' + w + ',height=' + h + ',scrollbars=' + scr;

	if(window == 'multiple') {
		var windowname = 'Image_Window_' + count;
		open(url, windowname, sizedwin);
	}
	else {
		var windowname = 'Image_Window';
		popup = open(url, windowname, sizedwin);
		popup.focus();
	}
    return false;
}
//-->