//SDC related JavaScript code need to be added here

function redirect(URLStr) { location = URLStr; }

var ie4 = document.all;
var ns4 = document.layers;
var ns6 = document.getElementById && !document.all; 

//var b = new BrowserInfo();
//alert(b.version); 

function BrowserInfo()
{
  this.name = navigator.appName;
  this.codename = navigator.appCodeName;
  this.version = navigator.appVersion.substring(0,4);
  this.platform = navigator.platform;
  this.javaEnabled = navigator.javaEnabled();
  this.screenWidth = screen.width;
  this.screenHeight = screen.height;
}
