function showhide(id){ 
	if (document.getElementById){ 
		obj = document.getElementById(id); 
		if (obj.style.display == "none"){ 
			obj.style.display = ""; 
		} else { 
			obj.style.display = "none"; 
		}
	} 
}

function contentWide(showMe,hideMe,d) {
	var showMeDiv = document.getElementById(showMe);
	var hideMeDiv = document.getElementById(hideMe);
	showMeDiv.style.display = "block";
	hideMeDiv.style.display = "none";
	window.location = "http://" +d;
	}

function doNothing(){}

function linkout(url) {
	newwindow=window.open(url,'name');
	if (window.focus) {newwindow.focus()}
	return false;
}

	
