<!-- Hide me
function ShowQuotePopup(w,h) {
 var chasm = screen.availWidth;
 var mount = screen.availHeight;
 var w = 375;
 var h = 275;
	var now = new Date();
	var QuotepopupURL = "quoteserver.htm";
	var QuotepopupName = "QuotesPopup";
	var quotepopup = window.open("", QuotepopupName,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=' + w + ',height=' + h + ',left=' + ((chasm - w - 10) * .5) + ',top=' + ((mount - h - 30) * .5));
	quotepopup.location = QuotepopupURL;
}
// Stop hidding me -->
