// Brad Javascript codes 

// Rollover product logo in "brands" page 
// EFFECT: square becomes white && 
// right image changes to appropriate image for that brand 
function Brand_rollover(element,right_image)
{
	element.bgColor='#FFFFFF';
	document.getElementById('right_image').src = '/images/right-img_'+right_image+'.jpg';
}

function Brand_rollout(element,right_image)
{
	element.bgColor='#F1EEEB';
	document.getElementById('right_image').src = '/images/right-img_'+right_image+'.jpg';
}


// Call Tech Service 
function tech_service(lang) {
	if(lang == 'fr') {
		window.open('/fr/content/floorcare/tech_service.php','tech_service','width=400,height=100,left=70,top=70');
	} else {
		window.open('/content/floorcare/tech_service.php','tech_service','width=400,height=100,left=70,top=70');		
	}
}