function openWindow(theURL,winName,features) {
  window.open(theURL,winName,"width=750,height=600,scrollbars=yes");
  return false;
}

function openQuote(quoteType) {
	window.opener.location.href="/"+quoteType;
	window.close();
}
