/*
	A Common Javascript file	
*/


/*
	It handles the broken images
*/
var contextPathVal = '/brickb2c';

 function onImgError(source) {
  source.src = contextPathVal + "/images/en/app/productNotAvailable_small.jpg";
  // disable onerror to prevent endless loop
  source.onerror = "";
  return true;
}
