// JavaScript Document
<!-- hide me from non-JavaScript-enabled browsers
  // open new window
  function openWin(file, name,h ,w) {
    popupWin = window.open(file, name, ('resizable=0,status=0,width=' + w + ',height=' + h));
    if (window.focus) {popupWin.focus()}
    }
	
	
  //Resize the current window
  function setSize(intHeight,intWidth){
    window.resizeTo(intWidth,intHeight)
    }
	
// done hiding -->