// JavaScript Document
function showOrHide(param){
	if(document.getElementById(param).style.display == "none"){
		document.getElementById(param).style.display = "block"
	}
	else{
		document.getElementById(param).style.display = "none"
	}	
}	


function compare(check_box, product_id, category_id, our_price, product_url, image_id){	

	if(check_box.checked){
		var temp = new Image();
		temp.src = "/cart/compareStateModifier.jsp?add=" + product_id + "&category=" + category_id + "&price=" + our_price + "&link=" + product_url + "&image_id=" + image_id
	}
	else{
		var temp = new Image();
		temp.src = "/cart/compareStateModifier.jsp?drop=" + product_id
	}
}




function translate(lan, murl){
tURL ='http://translate.google.com/translate?u=';


if(lan=='en'){
  window.open(murl,'_top','');
}else if(lan=='sp'){
  murl = tURL+ murl +'&langpair=en|es';
  window.open(murl,'_top','');
}else if(lan=='de'){
  murl = tURL+ murl +'&langpair=en|de';
  window.open(murl,'_top','');
}else if(lan=='fr'){
  murl = tURL+ murl +'&langpair=en|fr';
  window.open(murl,'_top','');
}else if(lan=='pt'){
  murl = tURL+ murl +'&langpair=en|pt';
  window.open(murl,'_top','');
}else if(lan=='it'){
  murl = tURL+ murl +'&langpair=en|it';
  window.open(murl,'_top','');
}


}




