function closeMOB() {
	//window.open('','_parent','');
	window.close();
}

function showIt(myid) {
	document.getElementById(myid).className = "show";
}

function hideIt(myid) {
	document.getElementById(myid).className = "hidden";
}

