function previewCOBDetails(itemId){
	window.open('/create_your_bouquet/display_cob_details.php?item_id='+itemId, 'viewdetails', 'width=500,height=400,status=0,toolbar=0,scrollbars=1,history=0,left=100,top=100,scrollbars=1,resizable=1');
	return false;
}
function validateBuyItem(itemName){
	var loggedIn = document.user.loggedIn.value;
	if (loggedIn == '1'){
		return true;
	}
	else{
		alert('You have to log in first.');
		return false;
	}
}

function alertLogIn(){
	alert('You have to log in fisrt in order to buy items.');
	return false;
}

function confirmEmptyCart(){
	var conf = confirm('Are you sure you want to cancel your order?');
	if (conf) {
		location.href='/catalog/empty_cart.php';
		return true;
	}
	else return false;
}

function validateUpdateShopCart(){
	return true;
}

function validatePlaceOrder(currentYear,currentMonth,currentDay){
	
	var root = document.your_order;
	var note = root.note.value;
	var address = root.address.value;
	var region_id = root.region_id.value;
	var country_id = root.country_id.value;
	var phone = root.phone.value;
	var year = root.year.value;
	var month = root.month.value;
	var day = root.day.value;
	var recipientName = root.recipient_name.value;
	
	if(country_id != 116)
	{
		if (note == '' || address == '' || country_id == '' || phone == '' || year == '' || month == '' || day == '' || recipientName == ''){
			alert('Please fill up all the fields');
			return false;
		}
	}
	if(country_id == 116)
	{
		if (note == '' || address == '' || region_id == '' || country_id == '' || phone == '' || year == '' || month == '' || day == '' || recipientName == ''){
			alert('Please fill up all the fields');
			return false;
		}
	}
	
	if (currentYear > year){
		alert('Please set a valid delivery date');
		return false;
	}
	else if (currentYear == year && currentMonth > month){
		alert('Please set a valid delivery date');
		return false;
	}
	else if (currentYear == year && currentMonth == month && currentDay > day){
		alert('Please set a valid delivery date');
		return false;
	}
	
	return true;
}

function resetOrderForm(){
	if (confirm('Are you sure you want to reset the form?')){
		var root = document.your_order;
		var note = root.note.value = '';
		var address = root.address.value = '';
		var region_id = root.region_id.value = '';
		var country_id = root.country_id.value = '';
		var phone = root.phone.value = '';
		var year = root.year.value = '';
		var month = root.month.value = '';
		var day = root.day.value = '';
	}
	return false;
}

function check_if_lebanon(region_name)
{
	var country_id = document.your_order.country_id.value;
	var region_td = document.getElementById(region_name);
	if (country_id == 116)
	{
		region_td.style.visibility = 'visible';
		region_td.style.height = '50px';
	}
	else
	{
		region_td.style.visibility = 'hidden';
		region_td.style.height = '1px';
	}
}
