var mobile_content;
var browser_type=navigator.appName;
var screen_width = screen.width;

//if PalmOS
if (browser_type=="Blazer")
	{
	mobile_content="You have a Palm PDA";
	}
//if Blackberry
else if (browser_type=="BlackBerry")
	{
	mobile_content="You have a BlackBerry";
	}
else if (screen_width == 160)
	{
	mobile_content="Screen width 160";
	}
else if (screen_width == 176)
	{
	mobile_content="Screen width 176";
	}
else if (screen_width == 208)
	{
	mobile_content="Screen width 208";
	}
else if (screen_width == 240)
	{
	mobile_content="Screen width 240";
	}
else if (screen_width == 320)
	{
	mobile_content="Screen width 320";
	}
else if (screen_width == 400)
	{
	mobile_content="Screen width 400";
	}
else if (screen_width == 480)
	{
	mobile_content="Screen width 480";
	}
else if (screen_width == 800)
	{
	mobile_content="Screen width 800";
	}
else
	{
	mobile_content="Screen width "+screen_width;
	}
