<!--

function popWin(url) {
	if ((popWin == null) || (popWin.closed == true)) {
		var popWin = window.open(url,"popup","width=470,height=400,resizable=yes,scrollbars=yes,toolbar=no,screenX=100,screenY=100,left=100,top=100")
	} else {
		popWin.focus();
		popWin.location=url;
	}
}

function popWin2() {
	var the_select = window.document.person.personID;
    var the_index = the_select.selectedIndex;
    var the_value = the_select.options[the_index].value;		
	var url2 = '/quote-person.php?i=' + the_value;

	if (the_index == 0) {
		return false;
	} else {
		if ((popWin == null) || (popWin.closed == true)) {
			var popWin = window.open(url2,"popup","width=470,height=400,resizable=yes,scrollbars=yes,toolbar=no,screenX=100,screenY=100,left=100,top=100")
		} else {
			popWin.focus();
			popWin.location=url2;
		}
	}
}
// -->
