//  Javascript  //--------------
//- mattwalford.co.uk
//- © James Brannon Media Design


// GENERAL //-------------------
//- non validation functions

//- visibility switch
function visible( id, btn, alt ) {
	
	//- show galleries
	document.getElementById( id ).style.display = "block";
	
	//- switch button with alt
	document.getElementById( alt ).style.display = "inline";
	document.getElementById( btn ).style.display = "none";
	
}

//- confirm function
function confirmPost() {

	var agree=confirm( "Are you sure?" );
	
	if (agree)
		return true ;
	else
		return false ;
}


// End General
//------------------------------
