	function getQuote(symb) {
		var win	= window.open('/cgi-bin/quotes.cgi?how=single&syms=' + symb,'QUOTE','location=no,status=no,toolbar=yes,menubar=yes,scrollbars=yes,width=500,height=500');
		win.moveTo(0,0);
	}
	function newWin(url,winName) {
		var win_w, win_h;
		if (parseInt(navigator.appVersion) > 3) {
			if (navigator.appName == "Netscape") {
  				win_w	= window.innerWidth;
  				win_h	= window.innerHeight;
 			}
 			if (navigator.appName.indexOf("Microsoft") != -1) {
 				win_w	= document.body.offsetWidth;
 				win_h	= document.body.offsetHeight;
			}
		}
		
		var new_w	= (win_w * .75);
		var new_h	= (win_h * .75);
		doIt(url, new_w, win_w, new_h, winName);
	}
	function doIt(loc, new_w, w, h, winName) {
		var win	= window.open(loc,winName,'resizable=yes,scrollbars=yes,location=no,status=no,menubar=no,width=' + new_w + ',height=' + h);
		win.resizeTo(new_w,h);
		
		var left	= w - new_w;
		
		win.moveTo(left,0);
	}
	
	function checkIt() {
		if (!document.contact.first.value)
			alert("First Name is blank");
		else if(!document.contact.last.value)
			alert("Last Name is blank");
		else if(!document.contact.addy1.value)
			alert("Street Address is blank");
		else if(!document.contact.city.value)
			alert("City is blank");
		else if(!document.contact.state.value)
			alert("State is blank");
		else if(!document.contact.zip.value)
			alert("ZIP is blank");
		else if(!document.contact.email.value)
			alert("Email is blank");
		else if(!document.contact.hPhone.value)
			alert("Home Phone is blank");
		else if(document.contact.size.selectedIndex == 0)
			alert("Choose a Total Investment Size");
		else if(document.contact.hear.selectedIndex == 0)
			alert("How did you hear about IMA?");
		else if(document.contact.hear.selectedIndex == 8 && !document.contact.other.value)
			alert("What other way did you hear about IMA?");
		else if(document.contact.reach.value && document.contact.reachHow.selectedIndex == 0)
			alert("Please tell us how you wish to be reached");
		else
			document.contact.submit();
	}