function hideBundle(){
//confirm("Hide this bundle");
if(document.all){
if(document.getElementById("wrapper").innerText.match(/Stock:0/)){
document.getElementById("bundleContent").innerHTML="<div style='font-family:tahoma,arial;font-size:14px; font-weight:bold; width:500px;margin-left:30px; border:2px #B10B19 solid;padding:12px;'>Sorry, one of the products in this bundle is temporarily out of stock. Check out our other great bundles and our countdown sale. If you are a previous customer, check your e-mails for our special offers. Become a members and get special discount codes.</div>";
	}
}
else{
if(document.getElementById("wrapper").innerHTML.match(/<strong>Stock:0/)){
document.getElementById("bundleContent").innerHTML="<div style='font-family:tahoma,arial;font-size:14px; font-weight:bold; width:500px;margin-left:30px; border:2px #B10B19 solid;padding:12px;'>Sorry, one of the products in this bundle is temporarily out of stock. Check out our other great bundles and our countdown sale. If you are a previous customer, check your e-mails for our special offers. Become a members and get special discount codes.</div>";
	}
}
}window.onload = function(){hideBundle();}
