// JavaScript Document

function showAddMsg(){
	var msgDiv=$.getById("addmsg");
	var shdDiv=$.getById("addmsgshd");
	var bkgDiv=$.getById("addmsgbkg");
	if(bkgDiv&&msgDiv){
		msgString="<div><h3>Love those colors. We've added them to your shopping cart.</h3><p>We have received your color sample order for your custom operatory. Great palette. Now you can go back, add more samples to your cart or checkout. You can also order or download brochures.</p><p class=\"center\"><a href=\"step-2.asp\" class=\"btn-step btn-close\" onclick=\"return closeAddMsg();\">Close Window</a></p></div>"; // <div class=\"bottom\"></div>
		 
		
		msgDiv.innerHTML=msgString;
		shdDiv.innerHTML=msgString;
		bkgDiv.onclick=function(){closeAddMsg()};
		bkgDiv.style["display"]="block";
		msgDiv.style["display"]="block";
		/*
		myLeft=String(parseInt(String($.getStyle(msgDiv,"left")).replace("px",""))+10)+"px";
		myTop=String(parseInt(String($.getStyle(msgDiv,"top")).replace("px",""))+10)+"px";
		myHeight=String(parseInt(String($.getStyle(msgDiv,"height")).replace("px",""))+10)+"px";
		shdDiv.style["left"]=myLeft;
		shdDiv.style["top"]=myTop;
		shdDiv.style["height"]=myHeight;
		*/
		shdDiv.style["display"]="block";
		// alert($.getStyle(msgDiv,"left"));
	}
}
function closeAddMsg(){
	var msgDiv=$.getById("addmsg");
	var bkgDiv=$.getById("addmsgbkg");
	var shdDiv=$.getById("addmsgshd");
	if(bkgDiv&&msgDiv){
		msgDiv.style["display"]="none";
		bkgDiv.style["display"]="none";
		shdDiv.style["display"]="none";
		return false;
	}
}
