
function launchPopup(url) {
	
	//alert('http://www.reachtheworld.org/' + url);
	
	newwindow=window.open('http://www.reachtheworld.org/' + url,'name','height=600,width=800,status=0,toolbar=0,location=0,menu=0,directories=0resizable=0,scrollbars=0');
	if (window.focus) {
		newwindow.focus()
	}
}

function confirmation(message, url) {
	var answer = confirm(message)
	if (answer){
		window.location = url;
	}
}
var newwin;

function launchwin(winurl,winname,winfeatures)
{
	//This launches a new window and then
	//focuses it if window.focus() is supported.
	newwin = window.open(winurl,winname,winfeatures);

		//delay a bit here because IE4 encounters errors
		//when trying to focus a recently opened window
 		setTimeout('newwin.focus();',250);
}