//bookmark function

function Bookmark(strUrl, strDescription) {

	strNetscape="First push OK and then hit CTRL+D to add a bookmark to this site."

	if (navigator.appName=='Microsoft Internet Explorer') {
		window.external.AddFavorite(strUrl, strDescription);
		}
	else {
		alert(strNetscape);
		}
}

//loan calc pop-up function
function OpenPopupLoanCalc() {

         openpopup = window.open("http://www.loansearch.com/loan_calc.asp","popupwin","width=800,height=600,left=22,top=22,resizable=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes");

         openpopup.opener.name = "opener";

         }

self.name="my_window"

self.focus()
