<!--
var new_width=0;
var new_height=0;

function ShowExample (strFile,new_width, new_height) {
	var dum
	var cur_width=screen.width - 50;
	var cur_height=screen.height - 50;
	
	var tmpw=(new_width += 37);
	var tmph=(new_height += 37);
	
	if (new_height > cur_height) { new_height=(cur_height); }
	if (new_width > cur_width) { new_width=(cur_width); }
	
		var wl=(cur_width /= 2) - (tmpw /= 2);
		var wt=(cur_height /= 2) - (tmph /= 2);

	dum = window.open(strFile,"","width=" + new_width + ", height=" + new_height + ", left=" + wl + ", top=" + wt + ", scrollbars");
}
-->