

function toggle( targetId1,targetId2 ){
  
  		target1 = document.getElementById( targetId1 );
		target2 = document.getElementById( targetId2 );
		var winh = (screen.height)-30;
		var winw = (screen.width)/3;
  			if (target1.style.display == "none"){
  				target1.style.display = "";
  			} else {
  				target1.style.display = "none";
  			}
			if (target2.style.display == "none"){
  				target2.style.display = "";
  			} else {
  				target1.style.display = "none";
  			}
		window.resizeTo(winw,winh);
  	}
	
function untoggle( targetId1,targetId2 ){
  
  		target1 = document.getElementById( targetId1 );
		target2 = document.getElementById( targetId2 );
		var winh = (screen.height);
		var winw = (screen.width);
  			if (target1.style.display == "none"){
  				target1.style.display = "";
  			} else {
  				target1.style.display = "none";
  			}
			if (target2.style.display == "none"){
  				target2.style.display = "";
  			} else {
  				target1.style.display = "none";
  			}
		parent.resizeTo(winw,winh);
  	}





function DonateWindow(mypage, myname, w, scroll) {
var winl = (2*(screen.width)/3)-20;
var wint = (screen.height);
var posh = 0;
winprops = 'height='+wint+',width='+winl+',top='+posh+',left='+winl+',scrollbars='+scroll+',resizable'
win = window.open(mypage, myname, winprops)

}



