// JavaScript Document

function showMobile() {
	var width = screen.width;
	var height = screen.height;	
	
	if (width < 800) {
	document.getElementById('mobile_site_lbl').style.visibility='visible';
}
}
