function FullscreenLoad(idioma,enlace){
	inicio = enlace.lastIndexOf('://');
	if(inicio=='-1'){
		enlace = 'http://'+enlace;
	}
	if (window.screen){
		var hori=screen.availWidth;
		var verti=screen.availHeight;
		if(idioma=='ca'){
			window.open(enlace,'Papelaweb', 'width='+hori+',height='+verti+',fullscreen=1, scrollbars=0,left='+(0)+',top='+(0));
		}else{
			window.open(enlace,'Papelaweb', 'width='+hori+',height='+verti+',fullscreen=1, scrollbars=0,left='+(0)+',top='+(0));
		}

	}
}
