﻿/////////////////////////////////////////////////////////////////////////////////////
//Paging
////////////////////////////////////////////////////////////////////////////////////
function ChangePage(id)
{
    // save the page clicked
    document.getElementById('ctl00_ContentPlaceHolder1_PageNumber').value = id;   
    // call the __doPostBack function to post back the form and execute the PageClick event
    __doPostBack('ctl00$ContentPlaceHolder1$PageCL','');		    
}
////////////////////////////////////////////////////////////////////////////////
// Search form Validation
///////////////////////////////////////////////////////////////////////////////
function validateSearchForm(form)
{	
		
	//for check empty e.g. Name,Address etc.
	if(!valid(form.searchtxt,"Please enter your serch keyword"))
	{
		return false;
	}
	
	
return true;
}
////////////////////////////////////////////////////////////////////////////////
//validation for empty field of Texbox,Textarea
function valid(theField,msg)
{
	if(theField.value.length==0)
	{
	     alert(msg);
	     theField.focus();
	     return false;
        }
        else
 	{
	     return true;
 	}

}
////////////////////////////////////////////////////////////////////////////////
// Newsletter form Validation
///////////////////////////////////////////////////////////////////////////////
function validateNewsForm(form)
{	
		
	//for check empty e.g. Name,Address etc.
	if(!valid(form.newsletter_email,"Please enter your Email Address"))
	{
		return false;
	}
	
	
return true;
}
////////////////////////////////////////////////////////////////////////////////
//function used for roll over the image on product description page
////////////////////////////////////////////////////////////////////////////////
   function roll_over(img_name, img_src)
   {
   	document[img_name].src = img_src;	
   }
////////////////////////////////////////////////////////////////////////////////
