// JavaScript Document<script language="javascript">
<!--
	function blinkIt() {
	 if (!document.all) return;
	 else {
	   for(i=0;i<document.all.tags('blink').length;i++){
	      s=document.all.tags('blink')[i];
	      s.style.visibility=(s.style.visibility=='visible')?'hidden':'visible';
	   }
	 }
	}
	function validateDomain()
	{
		if(document.getElementById('domainSr').value=='')
		{
			alert('Please Enter Domain Name');
			document.getElementById('domainSr').focus();
			return false;
		}
		else
		{
			var dmn = document.getElementById('domainSr').value;
			if(dmn.indexOf('.') > 0)
			{
				alert('Invalid Domain Name');
				document.getElementById('domainSr').focus();
				return false;				
			}
		}
	}
	
	function validateRenew()
	{
		if(document.getElementById('domainRn').value=='')
		{
			alert('Please Enter Domain Name to Renew');
			document.getElementById('domainRn').focus();
			return false;
		}
		else
		{
			var dmn = document.getElementById('domainRn').value;
			if(dmn.indexOf('.') > 0)
			{
				alert('Invalid Domain Name');
				document.getElementById('domainSr').focus();
				return false;				
			}
		}

	}	
//-->
