<!-- Script for opening sized windows external to IHC-->
<!--
function popExternal(choice){
	var ihcWin=window.open  (choice, "newWin","width=750,height=550,bgcolor=#ffffff,personalbar=no,location=yes,menubar=yes,scrollbars=yes,status=yes,toolbar=yes,resizable=yes,top=32,left=32,border=0")
ihcWin.focus(); 
 } 
//--> 
<!--Print Window
function printWindow() {
bV = parseInt(navigator.appVersion);
if (bV >= 4) window.print();
}
// -->
<!--Print Window
function printWin() {
bV = parseInt(navigator.appVersion);
if (bV >= 4) window.print();
}
// -->
<!-- Scripts for Opening Child windows -->
<!-- 
function open_win(url) { 
	popWin = window.open(url,'window_name','toolbar=1,scrollbars=1,location=1,statusbar=1,width=700,height=600,menubar=1,resizable=1,top=25,left=50')
}
//-->
<!-- 
function open_win_strip(url) {
popWin = window.open(url,'window_name','toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=1,resizable=1,width=700,height=600,top=25,left=50')
}
//-->
<!-- 
function open_win_strip_wide(url) {
popWin = window.open(url,'window_name','toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=1,resizable=1,width=640,height=350,top=25,left=50')
}
//-->
<!-- 
function open_popWin(url) { 
	popWin = window.open(url,'window_name','toolbar=1,scrollbars=1,location=1,statusbar=1,width=600,height=500,menubar=1,resizable=1,top=25,left=50')
}
//-->

<!-- 
function open_popWin_strip(url) { 
popWin = window.open(url,'window_name','toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=1,resizable=1,width=510,height=500,top=25,left=50')
}
//-->

<!-- 
function open_popWin_strip_long(url) { 
	popWin = window.open(url,'window_name','toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=1,resizable=1,width=750,height=700,top=25,left=50')
}
//-->

<!-- 
function open_popWin_small(url) { 
	popWin_small = window.open(url,'window_name','toolbar=0,scrollbars=0,location=0,statusbar=0,width=520,height=350,menubar=0,resizable=0,top=25,left=50')
}
//-->

<!-- Script for opening new windows with MapQuest content -->
<!--
function popMap(choice) {
	var ihcmapWin=window.open  (choice, "newWin","width=640,height=430,bgcolor=#ffffff,resizable=no,scrollbars=no,top=5,left=5,border=0")
 	ihcmapWin.focus();
}
//-->
<!--
function popMapDir(choice) {
	var ihcmapWin=window.open  (choice, "newWin","width=500,height=560,bgcolor=#ffffff,resizable=yes,scrollbars=yes,top=5,left=5,border=0")
 	ihcmapWin.focus();
}
//-->

<!-- Script for opening a popup window for images -->
<!--
function popimage(choice,xsize,ysize){
	features="width=" + xsize + ",height=" + ysize + ",bgcolor=#ffffff,resizable=no,scrollbars=no,top=5,left=5,border=0"
	var ihcimgWin=window.open(choice, "popuppic",features)
	ihcimgWin.focus();
}
//-->
<!--
function openVarWin(url, w, h) {
	var options = "width=" + w + ",height=" + h + ",";
	options += "resizable=yes,scrollbars=no,status=no,";
	options += "menubar=no,toolbar=no,location=no,directories=no";
	var newWin = window.open(url, 'newWin', options);
	newWin.focus();
}
//-->
<!--Link for using: <a href="javascript:openVarWin('http://www.ihc.com',900,300)" >IMAGE or TEXT</a> -->
<!--Script for disabling a component of a form-->	
	<!--
		function disableIt(radio){
		var f=radio.form;
		var radioList=f.elements[radio.name];
		for(i=0;i<radioList.length;i++){
		f.elements[radioList[i].value].disabled=(radioList[i].value!=radio.value)?true:false;
		}
		}
	-->