function removeQuote(QuoteType, URL) {
	if (confirm("Are you sure you want to remove your " + QuoteType + " quote?") == true)
		document.location = URL;
}
function getRadioValue(objRadio) {
	if (typeof objRadio.value != 'undefined')
		return objRadio.value;
		
	for (var intCounter = 0; intCounter < objRadio.length; intCounter++) {
		if (objRadio[intCounter].checked)
			return objRadio[intCounter].value;
	}
	return null;
}
function printLMPage(URL) {
	var objWindow = window.open(URL,'LMPrinter','width=725,height=500,toolbar=no,menubar=no,directories=no,status=0,scrollbars=no,resizable=no,location=no');
	objWindow.focus();
}


