
function show_more(){

if(document.getElementById('show_more').style.display=='none'){

	document.getElementById('show_more').style.display='';
	document.getElementById('more_btn').style.display='none'; 
}else{

	document.getElementById('show_more').style.display='none';
	document.getElementById('more_btn').style.display=''; 
	
}


}


function show_more2(theDiv){

if(document.getElementById(theDiv).style.display=='none'){
	document.getElementById('investorsDiv').style.display='none'; 
	document.getElementById('partnersDiv').style.display='none'; 
	document.getElementById('schoolDistDiv').style.display='none'; 

	document.getElementById(theDiv).style.display='';

}else{

	document.getElementById(theDiv).style.display='none'; 
	
}


}

function show_more_div(theDiv){

if(document.getElementById(theDiv).style.display=='none'){
	document.getElementById(theDiv).style.display='';
}else{
	document.getElementById(theDiv).style.display='none'; 
}


}

function getContentFromIframe(iFrameName)
{

    var myIFrame = document.getElementById(iFrameName);
    var content = myIFrame.contentWindow.document.body.innerHTML;
    return content;
    //Do whatever you need with the content    
}

function cancelpayment(){

var answer = confirm ("Are you sure you want to cancel the payment?")
if (answer)
window.location = 'https://svefoundation.org/svefoundation/donate';
else
return false;


}



