﻿/////////////////////////////////////////////////////////////////////////////////////
//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, desc_img_src, href_name, act_img_src)
{
    document.getElementById(img_name).src=desc_img_src;
    document.getElementById(href_name).href=act_img_src;
}
////////////////////////////////////////////////////////////////////////////////