function popUpAdjustable(URL, strWidth, strHeight) {
	newWindow = window.open(URL, '', 'resizable,status=no,width=' + strWidth + ',height=' + strHeight);
	if (window.focus) {
		newWindow.focus();
	}
}
function submitForm() {
	document.frmAdviceInquiry.submit();
}