// JavaScript Document

function xlink(page) {
	OpenWin = this.open(page, "CtrlWindow", "toolbar=yes,menubar=yes,location=yes,scrollbars=yes,resizable=yes"); 
}

function newWin(page, height, width) {
	OpenWin = this.open(page, "CtrlWindow", "height="+height+",width="+width+		
				",toolbar=yes,menubar=yes,location=yes,scrollbars=yes,resizable=yes"); 
}