function openWindow(url,winname,features) { //v3.0
  win = window.open(url,null,features);
  win.focus();
}
function helpWindow(help_id)
{
helpwindow=window.open('/in2/help/help.cfm?help_id='+help_id,'helpwindow','scrollbars,height=275,width=325');helpwindow.focus();
}
function warnAction(q,p) { //df
	if (confirm(q)) {
		location.href = p;
	}
}
function help(index) {
  window.open('../lib/general/help.cfm?index='+index,'help','width=240,height=160,scrollbars=no');
}
function onIt(src) {
	src.style.cursor="hand";
	}
	function offIt(src) {
	src.style.cursor="default";
	}
function clickIt(loc) {
	window.location=loc;
	src.style.cursor="default";
	}
function goTo(pagename) {
	if (pagename.options[pagename.selectedIndex].value != 'null') {
			location.href=pagename.options[pagename.selectedIndex].value;
	}
	return true;
}
function passwordReminder() {
	window.open('/sendpassword.cfm','password','width=400,height=150');
}
function passwordFwd(cEmail) {
	window.open('/sendpassword.cfm?cEmail=' + cEmail,'password','width=400,height=150');
}
function gotosite(site){
				if(site !=""){self.location=site;}
			}
