// JavaScript Document

function showForm(){
	//alert('show form');
	document.getElementById('contactForm').style.visibility = 'hidden';
	
		document.getElementById('contactForm').style.height = '1px';
}


function hideForm(){

document.getElementById('contactForm').style.visibility = 'visible';
document.getElementById('contactForm').style.height = '500px';

}

function showChoose(){
document.getElementById('choose-country-content').style.visibility = 'visible';	
		
}

function hideChoose(){
	document.getElementById('choose-country-content').style.visibility = 'hidden';	
	
}



function showFormThanks(){
	//alert('show form');
	document.getElementById('thankYou').style.visibility = 'hidden';
	
		document.getElementById('thankYou').style.height = '1px';
}


function hideFormThanks(){

document.getElementById('thankYou').style.visibility = 'visible';
document.getElementById('thankYou').style.height = '100px';

	document.getElementById('contactForm').style.visibility = 'hidden';
	
		document.getElementById('contactForm').style.height = '1px';

}




function check(){
		
	
if (document.getElementById('home_pg') || document.getElementById('explore_pg'))
	{
		
		document.getElementById('leftBox2').style.display = "block";
		
	
	}else{
	
	
	
	}
	
	
}
