function newWindowRedirect( url ){
	
				pageTracker._trackPageview("/"+url);
				newwindow=window.open("")
				newwindow.location="http://" + url;

}

function initMainRedirect(){

	document.getElementById("w3c").onclick = w3cRedirect;
	document.getElementById("gplLicence").onclick = gplRedirect;
	
}

function w3cRedirect(){

	newwindow=window.open("")
	newwindow.location=document.getElementById("w3c").href;
	return false;

}

function gplRedirect(){

	newwindow=window.open("")
	newwindow.location=document.getElementById("gplLicence").href;
	return false;

}