	var cout='perdpr';
	var ov_old='perdpr';
	function maximized(mi)
	{
		if (mi!=cout)
		{
			document.getElementById(cout).style.backgroundColor="#ffffff";
			document.getElementById(cout).style.color="#000000";
			document.getElementById(mi).style.backgroundColor="#316AC5"
			document.getElementById(mi).style.color="#ffffff";
			document.getElementById('sel').value=document.getElementById(mi).innerHTML;
			document.getElementById("max_width").style.display="none";
		}
		if (mi==cout)
		{
			document.getElementById(mi).style.backgroundColor="#316AC5"
			document.getElementById(mi).style.color="#ffffff";
			document.getElementById('sel').value=document.getElementById(mi).innerHTML;
			document.getElementById("max_width").style.display="none";
		}
		cout=mi;
	}
	function over(ov)
	{
		if (ov!=ov_old)
		{
			document.getElementById(ov).style.borderColor="#000000";
			document.getElementById(ov).style.borderStyle="dotted";
			document.getElementById(ov).style.borderWidth="1px";
			document.getElementById(ov_old).style.borderWidth="0px";
			document.getElementById("max_width").style.display="block";
		}
		ov_old=ov;
	}