
function StockHandler(exchange,quote)
{
	//alert(document.getElementById('exchange').value);
	if(exchange == "NYSE")
	{
		window.open('http://www.nyse.com/about/listed/quickquote.html?ticker='+quote,'Stocks');
	}
	else if(exchange == "London")
	{
		window.open('http://www.londonstockexchange.com/en-gb/pricesnews/prices/Trigger/genericsearch.htm?bsg=true&ns='+quote,'Stocks');
	}
	else if(exchange == "Paris")
	{
		window.open('http://www.euronext.com/quicksearch/resultquicksearch-2986-EN.html?restrict=euronext_en&matchpattern='+quote+'&fromsearchbox=true&path=/quicksearch&searchTarget=quote','Stocks');
	}
	else if(exchange == "NASDAQ")
	{
		window.open('http://quotes.nasdaq.com/quote.dll?mode=stock&page=quick&symbol='+quote,'Stocks');
	}
	else if(exchange == "Saudi")
	{
		window.open('http://www.tadawul.com.sa/wps/portal/!ut/p/_s.7_0_A/7_0_4BC?companySymbol=&ANN_ACTION=ANN_SEARCH&symbol='+quote+'&tabOrder=1&s8fid=2119194107721','Stocks');
	}
}

