﻿		function textCounter(field, maxlimit){
		if (field.value.length > maxlimit) 
			field.value = field.value.substring(0, maxlimit); 
		}

		function open_map() {
			var map = window.open ("map.asp", "win_map", "toolbar=no,menubar=no,status=no,location=no,width=915,height=770") ;
		}
		
		function doAction( action ) {
			document.forms['visitor'].actionID.value= action;
			
		}
		function doFields() {
			var mail1=document.getElementById('EMail');
			var phone1=document.getElementById('Phone');
			var name1=document.getElementById('Name');
			var obj=document.getElementById('anonymous');
			if (obj.checked)
			{
//				mail1.setAttribute('readonly',true,0);
//				phone1.setAttribute('readonly',true,0);
//				name1.setAttribute('readonly',true,0);
				mail1.setAttribute('require','false',0);
				phone1.setAttribute('require','false',0);
				name1.setAttribute('require','false',0);
				phone1.style.display = "none";
				phone1.value = '';
				mail1.style.display = "none";
				mail1.value = '';
				name1.style.display = "none";
				name1.value = '';
				t=document.getElementById('NameT');
				t.style.display = "none";
				t1=document.getElementById('PhoneT');
				t1.style.display = "none";
				t2=document.getElementById('EmailT');
				t2.style.display = "none";
			} else {
//				mail1.setAttribute('readonly',false,0);
//				phone1.setAttribute('readonly',false,0);
//				name1.setAttribute('readonly',false,0);
				mail1.setAttribute('require','true',0);
				phone1.setAttribute('require','true',0);
				name1.setAttribute('require','true',0);
				phone1.style.display = "";
				mail1.style.display = "";
				name1.style.display = "";
				t=document.getElementById('NameT');
				t.style.display = "";
				t1=document.getElementById('PhoneT');
				t1.style.display = "";
				t2=document.getElementById('EmailT');
				t2.style.display = "";
			}
			return true;
		}
		// Open Popup
		var op=null;
		function openPopup(imageSrc,w,h){
			if(op!=null && !op.closed) op.close();
			op=window.open('about:blank','popup','resizable=no,menubar=no,status=no,scrollbars=no,width='+w+',height='+(h+4)+',top=0,left=100');
			var temp = '<html>';
			temp +='<head><title>Ренессанс Онлайн</title>';
			temp +='<meta http-equiv="content-type" content="text/html; charset=windows-1251" />';
			temp +='</head>';
			temp +='<body bgcolor="#FFFFFF" leftmargin="0" rightmargin="0" topmargin="0" bottommargin="0" marginheight="0" marginwidth="0">';
			temp +='<a href="javascript:window.close()"><img border="0" src="'+imageSrc+'" title="Закрыть окно" alt="Закрыть окно" width="'+w+'" height="'+h+'" /></a>';
			temp +='</body></html>'
			op.document.write(temp);
			op.focus();
			return false;
		}
