// <!-- Begin Prophet Pop Quote Code 
// (c) 2000 Prophet Financial Systems, Inc. All rights reserved --> 
function openWindow(what2open,winName,winOptions){
  var url = what2open;
  var name = winName;
  var options = winOptions;
  popupWin = window.open(url,name,options);
  popupWin.opener.top.name="opener";
  popupWin.focus();
}

function popQuote(whichSymbol){
  var symbol = whichSymbol;
  var winName = 'popQuote';
  var what2open = 'http://www.prophetfinance.com/myfolio/liveQuotePopup.asp?symbol='+symbol;
  var winOptions='toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=505,height=335';
  openWindow(what2open,winName,winOptions);
}
document.write('<FO'+'RM NAME="liveQuote" action="javascript:popQuote(document.liveQuote.symbol.value);" onsubmit="javascript:popQuote(document.liveQuote.symbol.value);">');
document.write('<fo'+'nt size="2" face="Verdana, Arial, Helvetica, sans-serif">Symbol:&nbsp;</f'+'ont>');
document.write('<IN'+'PUT TYPE="TEXT" NAME="symbol" SIZE="5" MAXLENGTH="5" VALUE="">&nbsp;');
document.write('<IN'+'PUT TYPE="BUTTON" NAME="quote" VALUE="Quote" onClick="javascript:popQuote(document.liveQuote.symbol.value);">');
document.write('</F'+'ORM>');
//  End Prophet Pop Quote Code -->
