
function addToLightBox (num, text) {
	//if (confirm('Add photo to ligbtbox?')) {
		var ExpireDate = new Date ();
		ExpireDate.setTime(ExpireDate.getTime() + (7 * 24 * 3600 * 1000)); //14 days
		document.cookie="box_" + num + "=" + num + "_" + text + ";path=/;domain=primalpics.com;expires=" + ExpireDate.toGMTString();
		alert("You have added " + num + "_" + text + " to your light box");
	//}
}




//function addToLightBox (num, text) {
//	if (confirm('Add photo to ligbtbox?')) {
//		var ExpireDate = new Date ();
//		ExpireDate.setTime(ExpireDate.getTime() + (14 * 24 * 3600 * 1000)); //14 days
//		document.cookie="box_<!--filenumber-->=<!--filenumber-->_<!--filetext-->; domain=primalpics.com; expires=" + ExpireDate.toGMTString();
//		alert("You have added <!--filenumber-->_<!--filetext--> to your light box");
//	}
//}

