// JavaScript Document
function launchinfo(url) {
	self.name = "main"; // names current window as "main"
	var windowopt = "resizable,scrollbars,width=555,height=450,left=10,top=10";
	OpenWindow = window.open(url, "remote", windowopt); // opens remote control
}

//!-- Launches HIA Specific Terms of Use of this Website.
// Uses a variable for the URL

function launchNote(url) {
	self.name = "main"; // names current window as "main"
	var windowopt = "resizable,scrollbars,width=730,height=500,left=10,top=10";
	OpenWindow = window.open(url, "remote", windowopt); // opens remote control
}

//!-- Launches For the Calculator.
// Uses a variable for the URL
