function SearchForProduct()
{
	alert(document.getElementById('txtsearch').value);
  	//window.location.href='http://www.blanchel.com/Search.aspx?Keyword='+ document.getElementById('txtsearch').value;
	window.location="http://www.blanchel.com/BoutqiueProducts.aspx?Boutique_Id=12"
}

function showImage(imgElement,CurrentImageDir)
{
	//alert(document.getElementById(imgElement).src);
	//alert(document.getElementById("mainImage").src);
	//alert(document.getElementById("dnn_ctr403_ViewBlanchelProductInformation_mainImage").src);
        var PrevImgSrc=document.getElementById("dnn_ctr403_ViewBlanchelProductInformation_mainImage").src;
        document.getElementById("dnn_ctr403_ViewBlanchelProductInformation_mainImage").src=document.getElementById(imgElement).src;
        document.getElementById(imgElement).src=PrevImgSrc;
        document.getElementById("dnn_ctr403_ViewBlanchelProductInformation_currentImage").value=CurrentImageDir;
	return false;
}   

