﻿/////////////////////////////////////////////////////////////////////////////////////
//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','');		    
}

////////////////////////////////////////////////////////////////////////////////////
//Hide and show script
////////////////////////////////////////////////////////////////////////////////////
function changediv(id)
{
	var viewp, conp
	conp = "resp"+id
	if(document.getElementById(conp).style.display == '')
	{
		document.getElementById(conp).style.display = 'none';		
	}
	else
	{
		document.getElementById(conp).style.display = '';		
	}   
}
////////////////////////////////////////////////////////////////////////////////
//function used for roll over the image on product description page
////////////////////////////////////////////////////////////////////////////////
   function roll_over(img_name, img_src)
   {
   	document[img_name].src = img_src;	
   }
////////////////////////////////////////////////////////////////////////////////