//Get browser version
		var BROWSER = returnBrowser();
		var VERSION = returnVersion();
		if(returnBrowser() != 'unknown'){
			//browser detected
		}
		else{
			//browser unknown
			window.location.replace('http://www.liquidlimehosting.com/stevenhummeltest10/flashdetect.html'); 
		}
			
	//Get DOM version	
		var DOM = returnDOM();
		if((DOM == 'w3dom') || (DOM == 'ie6dom') || (DOM == 'ie7dom')){
			//DOM current
		}
		else if(DOM == 'unknown'){
			//DOM unknown
			window.location.replace('http://www.liquidlimehosting.com/stevenhummeltest10/flashdetect.html'); 
		}
		else{
			//DOM outdated
		}
		
	//Get flash version		
		var FLASH = returnFlash();
		if(FLASH > 5){
			//flash version is 8 and above
		}
		else if((FLASH < 6) && (FLASH > 0)){
			//flash version is less than 8
			window.location.replace('http://www.liquidlimehosting.com/stevenhummeltest10/flashdetect.html'); 
		}
		else{
			//flash version is unknown
			window.location.replace('http://www.liquidlimehosting.com/stevenhummeltest10/flashdetect.html'); 
		}
