function btnSend_onclick()
{
	with(document.sendObject) {
		if(
		   isBlankText(request.value)
		   || isBlankText(email.value)
		   ) {
			alert("Please fill both request and email fields.");
			return;
		}
		oHttp = new httpConnector();
		var sValid = oHttp.getResponse("GET", "contactrequest.php?email=" + email.value + '&request=' + request.value);
		//alert(sValid);
		alert("Thank you for your request. We will contact you ASAP at the provided email address");
		return;
					   
	}
}

function activateSpan(sId, sOperation)
{
	var oOpen = MM_findObj('circ' + sId + 'buttonopen');
	var oClosed = MM_findObj('circ' + sId + 'buttonclosed');	
	var oText = MM_findObj('circ' + sId + 'more');	
	if(sOperation == 'open') {
		oOpen.style.display = 'none';
		oClosed.style.display = 'inline';
		oText.style.display = 'inline';
	}
	if(sOperation == 'close') {
		oOpen.style.display = 'inline';
		oClosed.style.display = 'none';
		oText.style.display = 'none';
	}
	
}

function switchFeatured()
{
	var oFeat1 = MM_findObj('featuredspan1');
	var oFeat2 = MM_findObj('featuredspan2');
	if(oFeat1.style.display == 'none') {
		oFeat1.style.display = 'block';
		oFeat2.style.display = 'none';
	} else {
		oFeat1.style.display = 'none';
		oFeat2.style.display = 'block';
	}
	
}

function message()
{
	alert("Our website is redesigned and reconstructed. Feel free to use the contact page for any information. Thank you!");
}

function toogleUrgentBook() {
	//
	var divId = "urgent_bookdiv";
	//
	var theDiv = document.getElementById(divId);
	theDiv.style.display=theDiv.style.display == "none"?"block":"none";
	//
}

function toogleVariousBanners() {
	//
	var divId = "various_banners_div";
	//
	var theDiv = document.getElementById(divId);
	theDiv.style.display=theDiv.style.display == "none"?"block":"none";
	//
}
