﻿// JScript File
function ValidatePhone(ControlID)
		{
			
			if (event.keyCode != 8)
			{
				var Control;
				Control = document.all(ControlID);
				if (Control==null) return false;
				p=Control.value;			
				if(p.length==3)
				{
					pp=p;
					Control.value="";
					Control.value='(' + pp + ')';
				}
				
				if(p.length==8)
				{
					pp = p;
					Control.value=pp + '-';
				}	
			}	
			
		}

function ValidateSSN(ControlID1)
		{
			
			if (event.keyCode != 8)
			{
				var Control;
				Control = document.all(ControlID1);
				if (Control==null) return false;
				p=Control.value;			
				if(p.length==3)
				{
					pp=p;
					Control.value="";
					Control.value= pp + '-';
				}
				
				if(p.length==6)
				{
					pp = p;
					Control.value=pp + '-';
				}	
			}	
			
		}

function ValidateFax(ControlID1)
		{
			
			if (event.keyCode != 8)
			{
				var Control;
				Control = document.all(ControlID1);
				if (Control==null) return false;
				p=Control.value;			
				if(p.length==3)
				{
					pp=p;
					Control.value="";
					Control.value= pp + '-';
				}
				
				if(p.length==7)
				{
					pp = p;
					Control.value=pp + '-';
				}	
			}	
		}
		
		
		function ValidateTime(ControlID1)
		{
		if (event.keyCode != 8)
			{
				var Control;
				Control = document.all(ControlID1);
				if (Control==null) return false;
				p=Control.value;			
				if(p.length==2)
				{
					pp=p;
					Control.value="";
					Control.value= pp + ':';
				}
			}	
		}