function toogleweb() {
	var div1 = document.getElementById('webdiv1');  
	var div2 = document.getElementById('webdiv2'); 
	var myswitch = document.getElementById('webswitch');  
	if (myswitch.selectedIndex == 1) {
		div1.style.display = 'inline';
		div2.style.display = 'inline';
	} else {
		div1.style.display = 'none';
		div2.style.display = 'none';
	}
}

function toogleare() {
	
	var div = document.getElementById('arediv');  
	var contactswitch = document.getElementById('contactswitch');  
	
	if (contactswitch.checked == true) {
		
		div.style.display = 'block';
		
	}  else {
		
		div.style.display = 'none';
		
	}
	
}

function myPopup(windowName, URL, width, height, scrolling) {
	width = width || 500;
	height = height || 460;
	scrolling = scrolling || 0;
	
	var topX = (window.screen.width / 2) - ( width / 2);
	var topY = (window.screen.height / 2) - ( height / 2);
	
	window.open(URL, windowName, 'width=' + width + ',height=' + height +
 ',location=no,resizable=yes,scrollbars=' + scrolling + 
',screenX=' + topX + ',screenY=' + topY);
}
