/* *************************************************** 		*/
/*															*/
/*  Name:		awm-common.js								*/
/*	Desc:		Content loader javascript functions			*/
/*				for Alistic Web Management website			*/
/*  Created:	Sept 2010									*/
/*															*/
/* *************************************************** 		*/


function DomainInfo()
{
	this.domainName = document.domain.toLowerCase();
}


//var b = new BrowserInfo();
//alert("Browser:" + b.codename + "\nVersion:" + 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;
}
