function hmfawin(str){
	  var hmfawn;
	  var sW = screen.availWidth - screen.availWidth;
	  var sww=screen.availWidth-10;
	  if (navigator.appVersion.indexOf("NT 5.1")!=-1){
		  var sH = screen.availHeight -60;
	  }else{
		  var sH = screen.availHeight -50;
	  }
	  hmfawn = window.open("","hmfaApp","locationbar=no,menubar=no,status=yes, scrollbars=no,resizable=no,width="+ sww +",height="+ sH +",left="+ sW +",top=0");
	  hmfawn.location = "http://sgl.state.nj.us/hmfa/default.htm?LocatorType=" + escape(str);
	  hmfawn.focus();
} 

function openPopUpNew(URL) {
	newWindow = window.open(URL,"popup","scrollbars,HEIGHT=450,WIDTH=450, resizable=yes");
  	newWindow.focus();
}