/*
 *
 * My functions for jumping to a URL
 *
*/
function openURL(theURL)
{ 
	if ( ! theURL) {
		alert ("You need to select a URL");
		return false;
	}
	
	window.open (theURL); 
}

