// JavaScript Document used for opening windows for cd_table.html


<!-- 
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=1,RESIZABLE=1';
	window.open('../asp/cd_popups.asp?imgFile='+imgFileName+'&imgw='+w+'&imgh='+h,'imgWindow',winParams);
	}
-->
