type="text/javascript"

function Redirige(url){
	var destination=url.toString();
	if (destination.substring(0,4)=='http'){
		var parametres="";
		parametres='top=0,left=0,height='+screen.height+',width='+screen.width+',scrollbars=yes,menubar=yes,toolbar=yes,status=yes,titlebar=yes,location=yes,resizable=yes'
		window.open(destination,'newwin',parametres);
		return;
	} 
	if (destination.substring(0,6)=='popup '){
		destination = destination.substring(6,destination.length);
		var parametres="";
		parametres='top=100,left=300,height=250,width=200,scrollbars=no,menubar=no,toolbar=no,status=no,titlebar=no,location=no,resizable=no'
		window.open(destination,'popup',parametres);
		return;
	} 
	window.location.href=url;
}