//created for the new compare charts
function OpenCompareChart(SSFileName) {
		
		// Get the manufacturer and version info
		manufacturer=navigator.appName
		version=navigator.appVersion;
		
		// Look for Netscape
		if (manufacturer.indexOf('Netscape')>=0)
		{
		
		var ScreenCapture = window.open(SSFileName,
		"ScreenCapture","menubar=0,toolbar=0,location=0,directories=0,status=no,titlebar=no,"
		+"scrollbars=1,resizable=1,copyhistory=0,width=588,height=505,alwaysRaised=1,"
		+"hotkeys=0,screenx=0,screeny=0,left=10,top=10")
		
		ScreenCapture.focus()
		}
		
		
		// Look for IE 
		if (manufacturer.indexOf('Microsoft')>=0)
		{ 
		
		var ScreenCapture = window.open(SSFileName,
		"ScreenCapture","menubar=0,toolbar=0,location=0,directories=0,status=no,titlebar=no,"
		+"scrollbars=1,resizable=1,copyhistory=0,width=600,height=515,alwaysRaised=1,"
		+"hotkeys=0,screenx=0,screeny=0,left=10,top=10")
		
		ScreenCapture.focus()
		}
		
		}	