	<!--
		var pm_tagname = "universalTag.txt";
		var pm_tagversion = "1.4";
		var pm_accountid = "07TPJM5S14B3EM2B78CVG78KJ4";
		var pm_scripthost = "srv.perf.overture.com";
		var pm_customargs = "";
		var pm_querystr = "?" + "ver=" + pm_tagversion + "&aid=" + pm_accountid + pm_customargs;
		var pm_tag = "<SCR" + "IPT LANGUAGE='JavaScript' " + "SRC=//" + pm_scripthost + "/collweb/ScriptServlet" + pm_querystr + "></SCR" + "IPT>";
		document.write(pm_tag);
		
		function start() {
		  menu1 = new animation("menu1");
		  if (!menu1.element) return;
		  menu2 = new animation("menu2");
		  
		  hide( "submenu1" ) ;
		}
		//function to validate login page..
		
		var re = /^\s{1,}$/g; //Match any white space including space, tab, form-feed, etc. 

		function emptyCheck(field)
		{
			str1 = field.value;
			if ((str1.length==0) || (str1==null) || ((str1.search(re)) > -1)) 
			{
				return false;
			}
		} 
		
		function slideMenu(){
			menu2.slideBy(0, 60, 25, 1, "show('submenu1')") ;
			document.getElementById( "slideLink" ).onclick = "hide('submenu1')" ;
		}
		
		function graphicsb_data0(){
	    //Scroll Bar Images
	    
			this.up_button = "img/sample4_up.gif";                                          //image path and name only
			this.up_button_roll = "img/sample4_up.gif";                                //image path and name only
			this.down_button = "img/sample4_down.gif";                                      //image path and name only
			this.down_button_roll = "img/sample4_down.gif";                            //image path and name only
		
			this.slider_tile_bg_style = "background-image:url(img/sample4_slider_bg.gif);"  //image defined as CSS style
		
			this.bubble_top_cap = "img/sample4_bubble_topcap.gif,4";                        //image path and name, height - (width is automatically set to scroll bar width)
			this.bubble_bottom_cap = "img/sample4_bubble_bottomcap.gif,4";                  //image path and name, height - ""
			this.bubble_center = "img/sample4_bubble_center.gif,2";                         //image path and name, height - ""
			this.bubble_tile_bg_style = "img/sample4_bubble_bg.gif";                        //image path and name only	
	
	    //Scroll Bar Container and Content
	
			this.container_width = 400
			this.container_height = 150
		
			this.container_bg_color = "#FFFFFF";
					
			this.content_padding = 0
			this.content_styles = "font-family:Verdana;font-weight:normal;font-size:10px;";
			this.content_class_name = "";

		  //Scroll Bar Behaviour and Width
		
			this.scroll_bar_width = 18                     //The width of the bar in pixels.
			this.scroll_increment = 20                     //The distance to scroll when clicking the up or down buttons.
		
			this.allow_hover_scroll = true;               //Auto scroll while hovering over top and bottom buttons.
			this.hover_scroll_delay = 50;                 //Milliseconds (1/1000 second)
		
			//this.use_hand_cursor = false;
		}
		// -->
		function IsEmail(fld)
		{
			var regex = /^[\w]+(\.[\w]+)*@([\w]+\.)+[a-zA-Z]{2,7}$/ ;
			if(!regex.test(fld.value))
			{
				return false;
			}
		}

		function validate()
		{
			if(emptyCheck(frmRequest.f_name)==false)
			{
				alert("Please enter First Name.");
				frmRequest.f_name.focus();
				return false;
			}
			if(emptyCheck(frmRequest.l_name)==false)
			{
				alert("Please enter Last Name.");
				frmRequest.l_name.focus();
				return false;
			}
			if(emptyCheck(frmRequest.email)==false)
			{
				alert("Please enter Email.");
				frmRequest.email.focus();
				return false;
			}
			if(frmRequest.email.value != "")
			{
				if(IsEmail(frmRequest.email)==false)
					{
						alert("Please enter a valid email address for Email field.");
						frmRequest.email.focus();
						return false;
					}
			}
			if(emptyCheck(frmRequest.comments)==false)
			{
				alert("Please enter Comments.");
				frmRequest.comments.focus();
				return false;
			}
			
		}
	function validate_sche()
		{
			if(emptyCheck(frmRequest.f_name)==false)
			{
				alert("Please enter First Name.");
				frmRequest.f_name.focus();
				return false;
			}
			if(emptyCheck(frmRequest.l_name)==false)
			{
				alert("Please enter Last Name.");
				frmRequest.l_name.focus();
				return false;
			}
			if(emptyCheck(frmRequest.email)==false)
			{
				alert("Please enter Email.");
				frmRequest.email.focus();
				return false;
			}
		
			if(frmRequest.email.value != "")
			{
				if(IsEmail(frmRequest.email)==false)
					{
						alert("Please enter a valid email address for Email field.");
						frmRequest.email.focus();
						return false;
					}
			}
		
			var	val	=frmRequest.best_date.value 
			var d=new Date();
			if (val<d.getDate())
			{
				alert("Please enter greater than today date.");
				return false;
			}

			if(emptyCheck(frmRequest.comments)==false)
			{
				alert("Please enter Comments.");
				frmRequest.comments.focus();
				return false;
			}
			
		}		
function echeck(str) {
		str=Trim(str)
		str=RTrim(str)
		str=LTrim(str)
		var at="@"
		var dot="."
		var lat=str.indexOf(at)
		var lstr=str.length
		var ldot=str.indexOf(dot)
		if (str.indexOf(at)==-1){
		   alert("Invalid E-mail ID")
		   return false
		}

		if (str.indexOf(at)==-1 || str.indexOf(at)==0 || str.indexOf(at)==lstr){
		   alert("Invalid E-mail ID")
		   return false
		}

		if (str.indexOf(dot)==-1 || str.indexOf(dot)==0 || str.indexOf(dot)==lstr){
		    alert("Invalid E-mail ID")
		    return false
		}

		 if (str.indexOf(at,(lat+1))!=-1){
		    alert("Invalid E-mail ID")
		    return false
		 }

		 if (str.substring(lat-1,lat)==dot || str.substring(lat+1,lat+2)==dot){
		    alert("Invalid E-mail ID")
		    return false
		 }

		 if (str.indexOf(dot,(lat+2))==-1){
		    alert("Invalid E-mail ID")
		    return false
		 }
		
		 if (str.indexOf(" ")!=-1){
		    alert("Invalid E-mail ID")
		    return false
		 }

 		 return true					
	}	


function Trim(TRIM_VALUE){
if(TRIM_VALUE.length < 1){
return"";
}
TRIM_VALUE = RTrim(TRIM_VALUE);
TRIM_VALUE = LTrim(TRIM_VALUE);
if(TRIM_VALUE==""){
return "";
}
else{
return TRIM_VALUE;
}
} //End Function

function RTrim(VALUE){
var w_space = String.fromCharCode(32);
var v_length = VALUE.length;
var strTemp = "";
if(v_length < 0){
return"";
}
var iTemp = v_length -1;

while(iTemp > -1){
if(VALUE.charAt(iTemp) == w_space){
}
else{
strTemp = VALUE.substring(0,iTemp +1);
break;
}
iTemp = iTemp-1;

} //End While
return strTemp;

} //End Function

function LTrim(VALUE){
var w_space = String.fromCharCode(32);
if(v_length < 1){
return"";
}
var v_length = VALUE.length;
var strTemp = "";

var iTemp = 0;

while(iTemp < v_length){
if(VALUE.charAt(iTemp) == w_space){
}
else{
strTemp = VALUE.substring(iTemp,v_length);
break;
}
iTemp = iTemp + 1;
} //End While
return strTemp;
} //End Function

