/* show - hide */

function show_hide_div(div_id){

	var existediv=document.getElementById(div_id);

	if (existediv){

		if (document.getElementById(div_id).style.display=='none'){

			show_div(div_id);

		}else{

			hide_div(div_id);

		}

	}

}

function show_div(div_id){

	var existediv=document.getElementById(div_id);

	if (existediv){

		document.getElementById(div_id).style.display = '';

			

	}

}

function hide_div(div_id){

	var existediv=document.getElementById(div_id);

	if (existediv){

		document.getElementById(div_id).style.display = 'none';

	}

}



/* popups en product_box*/ 

function popup(str)
{
	if(str=="Used-Gear")
	{
		window.open("../popup_usedgear.html", "UsedGearPopUp", 'height=420,width=489,top=100,left=100,scrollbars=no,resizable=no');
	}
	else if(str=="Scratch-Dent")
	{
		window.open("../popup_dentscratch.html", "DentScratchPopUp", 'height=331,width=489,top=100,left=100,scrollbars=no,resizable=no');
	}
}