function getContent(name) {
	// Make AJAX request, then return false to disable default href link
	new Ajax.Request('contentEngine.php',
		{ 	method : 'get',
			parameters : {'name' : name },
			onSuccess : function(transport) { 
							contentDiv = document.getElementById("content");
							contentDiv.innerHTML = transport.responseText;
			},
			onFailure : function() { 
							alert('Unable to retrieve content'); 
			}
		});
		return false;
}

function newWindow(newContent, width, height) {
	winContent = window.open(newContent,'nextWin','width='+width+',height='+height+',toolbar=no,scrollbars=no,resizable=yes');
	winContent.focus();
}

