///////////////////////////////////
////**** Browser Detection ****////
///////////////////////////////////

function BrowserChecker()
{
	if(navigator.userAgent.indexOf("MSIE") == "-1")
	{
		//Internet Explorer not found
		document.write("MSIE Not Found");
	}
	else
	{
		//Internet Explorer found
		document.write("MSIE Found");
	}
}

function PlatformChecker()
{
	if(navigator.userAgent.indexOf("Windows") == "-1")
	{
		//Windows not found
		document.write("Windows Not Found");
	}
	else
	{
		//Windows found
		document.write("Windows Found");
	}
}