function giftcPreview(){
	var initial_balance;
	var sender;
	var senderemail;
	var recipient;
	var recipientemail;
	var message;
	var generator;
	
	initial_balance = document.forms[0].initial_balance.value;
	sender = document.forms[0].sender.value;
	senderemail = document.forms[0].senderemail.value;
	recipient = document.forms[0].recipient.value;
	recipientemail = document.forms[0].recipientemail.value;
	message = document.forms[0].message.value;

	generator=window.open('','mywindow','location=0,menubar=0,resizable=1,scrollbars=1,width=700,height=500');
	generator.document.write("<html><head>");
	generator.document.write('</head><body>');
	generator.document.write('<p><strong>Dear ' + recipient + ',</strong></p><p><strong>' + sender + ' has given you a Barking Buffalo Gift Certificate!</strong></p>');
	generator.document.write('<p><blockquote>' + message + '</blockquote></p>');
	generator.document.write('<p><strong>To use your gift certificate, visit Barking Buffalo Trail Mix at www.barkingbuffalo.com. Then, make your own custom trail mix from 24 unique ingredients or choose from our pre-designed mixes.  At checkout, enter the gift certificate code below into the gift certificate box.</strong></p>');
	generator.document.write('<p><table border="0" cellspacing="0" cellpadding="0"><tr><td colspan="2"><img src="images/certificate1.jpg" width="300" height="200" border="0" /></td><td colspan="2"><img src="images/certificate2.jpg" width="300" height="200" /></td></tr><tr><td colspan="2"><img src="images/certificate3.jpg" width="300" height="35" /></td><td colspan="2"><table width="300" height="35" border="0" cellpadding="0" cellspacing="0"><tr><td><div align="center"><strong>$</strong>&nbsp;' + initial_balance +'</div></td><td align="right"><img src="images/certificate4.jpg" /></td></tr></table></td></tr><tr><td colspan="2" valign="top"><img src="images/certificate5.jpg" width="300" height="59" /></td><td colspan="2" valign="top"><img src="images/certificate6.jpg" width="300" height="59" /></td></tr></table>');
	generator.document.write('<p><a href="javascript:window.close();">Close this window</a></p>');
	generator.document.write('</body></html>');
	generator.document.close();
}

function togglevis(id){
	if (document.getElementById(id).style.display == 'none'){
	  document.getElementById(id).style.display = 'block';
	} else {
	  document.getElementById(id).style.display = 'none';
	}
}

function togglepopup(img, ingredientid){
	var image_src = "../images/1"+img+".jpg";
	document.getElementById('whoapopup').style.display = 'none';
	document.getElementById('ingredientpopupimage').src = '../images/1loading.jpg';
	document.getElementById('ingredientpopupimage').src = image_src;
	//document.getElementById('ingredientpopup').style.background = "url(../images/1addbutton.jpg)";
	//document.getElementById('ingredientpopup').style.backgroundRepeat = "no-repeat";
	//document.getElementById('ingredientpopup').style.backgroundPosition = "bottom center";
	document.getElementById('ingredientpopup').style.display = 'block';
	document.getElementById('ingredient-popup-orderbutton-link').href = "cart/addToBasket.php?oz=2&ingredients=" + ingredientid;
	document.getElementById('ingredient-popup-orderbutton-link-4').href = "cart/addToBasket.php?oz=4&ingredients=" + ingredientid;
	document.getElementById('ingredient-popup-orderbutton-link-6').href = "cart/addToBasket.php?oz=6&ingredients=" + ingredientid;
	document.getElementById('ingredient-popup-orderbutton-link-8').href = "cart/addToBasket.php?oz=8&ingredients=" + ingredientid;	
}

function mypopup(page){
	mywindow = window.open(page,'mywindow','location=0,menubar=0,resizable=1,scrollbars=1,width=700,height=500');
	mywindow.moveTo(100,100);
} 

function closepopup(id){
	document.getElementById(id).style.display = 'none';
	document.getElementById('ingredientpopupimage').src = '../images/1loading.jpg';
} 

function addBag(){
	if(document.getElementById('bagstatusimg').src == 'http://barkingbuffalo.com/images/bagstatus_12.jpg' || document.getElementById('bagstatusimg').src == 'http://www.barkingbuffalo.com/images/bagstatus_12.jpg' || document.getElementById('bagstatusimg').src == 'http://barkingbuffalo.local/images/bagstatus_12.jpg' || document.getElementById('bagstatusimg').src == 'http://005f422.netsolhost.com/images/bagstatus_12.jpg'){
		window.location = '/cart/addBag.php';	
	}else{
		document.getElementById('ingredientpopup').style.display = 'none';
		document.getElementById('whoapopupimage').src = 'images/1whoa.jpg';		
		document.getElementById('whoapopup').style.display = 'block';
	}
}