// XLS method
window.name="parentWin";
// open new window
function openWin(file, name) {
        
		popupWin = window.open(file, name, 'scrollbars,resizable,status=0,width=800,height=600');
		popupWin = window.open(file, name, 'scrollbars,resizable,status=0,width=800,height=600');

		// focus window (only for > Navigator 3.0)

        if ( (navigator.appName != "Microsoft Internet Explorer") && 
(navigator.appVersion.substring(0,1) == "3") )

        popupWin.focus();
}


// TSX method
function gotoTSX(){
	var url="http://www.tsx.com/HttpController?GetPage=DetailedQuotePage&SelectedSymbol=NEM&RowNumber=1&DetailedView=DetailedPrices&Market=T&QuoteSymbol_1=NEM&QuoteSymbol_2=&QuoteSymbol_3=&QuoteSymbol_4=&QuoteSymbol_5=&QuoteSymbol_6=&QuoteSymbol_7=&QuoteSymbol_8=&QuoteSymbol_9=&QuoteSymbol_10=&QuoteSymbol_11=&QuoteSymbol_12=&Language=en";
	newwindow=window.open(url,'TSX','height=600,width=800,resizable=yes,scrollbars=yes');
	if (window.focus) {newwindow.focus()}

}

