<!-- //mailto all functionfunction mailto_all(email){	var mailing = "";	mailing = email;	if(mailing == "mailto:")	{		alert("No Emails Selected");	}	else	{		window.location.href = mailing;	}}//mailto selected functionfunction mailto_select(mode){	var mailing = "";	var f = window.document.forms[0];	var found = 0;	for(var i = 0; i < f.length; i++)	{		if((f.elements[i].type == "checkbox") && ((mode == "all") || (f.elements[i].checked)))		{			if(mailing == "")			{				mailing = "mailto:";				mailing += f.elements[i].name;				found = 1;			}			else			{				mailing += ",";				mailing += f.elements[i].name;			}		}	}	if(mailing == "")	{		alert("No Emails Selected");	}	else	{		window.location.href = mailing;	}}//popup windows for productsfunction popupWindow(referenceHTML, w, h) {var winl = (screen.width - w) / 2;var wint = (screen.height - h) / 2;windowProperties = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=yes,resizable'reference = window.open(referenceHTML, 'refName', windowProperties)if (parseInt(navigator.appVersion) >= 4) { reference.window.focus(); }}//popup windows for referencesfunction popupRef(referenceHTML, w, h) {	var winl = (screen.width - w) / 5;	var wint = (screen.height - h) / 5;	windowProperties = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=no'	reference = window.open(referenceHTML, 'refName', windowProperties)	if (parseInt(navigator.appVersion) >= 4) { reference.window.focus(); }	}function NS4resize() {	if (NS4sIW != window.innerWidth || NS4sIH != window.innerHeight) window.location.reload();}//-->
