// JavaScript Document -- Document used for opening windows for popups
  
<!--   
  function newWin(imgFileName,w, h) 
  	{
  	var wdth = parseInt(w) + 20;
	var hgt = parseInt(h) + 70;
 	var winParams='width='+wdth+',height='+hgt+',TOOLBARS=0,LOCATION=0,STATUS=0,MENUBAR=0,SCROLLBARS=0,RESIZABLE=1';
	window.open('asp/popups.asp?imgFile='+imgFileName+'&imgw='+w+'&imgh='+h,'imgWindow',winParams);
	}
-->