// JavaScript Document


function openWin(location, ht, wd) {
//	This function opens a new window of the specified size, displaying the specified page
	newWindow=window.open(location,"newWin","scrollbars,resizable,height="+ht+",width="+wd);
	newWindow.focus();
}	