function precarrega(){
	imgVar = new Image();
	imgVar.src = imagemVar;
	loadCheck();
}

function loadCheck(){
	if (imgVar.complete || navigator.appName == "Netscape"){
		pop=open('','pop','width=50,height=50,resizable=no,top=0,left=0');
		pop.document.open();
		pop.document.writeln('<html>');
		pop.document.writeln('<head>');
		pop.document.writeln('<title>' + tituloVar + '</title>');
		pop.document.writeln('<script language=\"javascript\">');
		pop.document.writeln('function alertando(){');
		pop.document.writeln('		window.alert(\'...\');');
		pop.document.writeln('}');
		pop.document.writeln('function verfont(){');
		pop.document.writeln('	if (event.button==2 || event.button==3 || event.button==4){');
		pop.document.writeln('		alertando();');
		pop.document.writeln('	}');
		pop.document.writeln('}');
		pop.document.writeln('document.onmousedown=verfont');
		pop.document.writeln('function tamanho(){');
		pop.document.writeln('if (top.screen) {');
		pop.document.writeln('var aw = screen.availWidth;');
		pop.document.writeln('var ah = screen.availHeight;');
		pop.document.writeln('obj=document.foto;');
		pop.document.writeln('if (obj.width < aw) {aw=obj.width};');
		pop.document.writeln('if (obj.height < ah) {ah=obj.height};');
		pop.document.writeln('if (navigator.appName == \"Microsoft Internet Explorer\" && navigator.platform == \"Win32\"){ah=ah + 29; aw=aw + 10;}');
		pop.document.writeln('top.resizeTo(aw, ah);}}');
		pop.document.writeln('</script');
		pop.document.writeln('>');
		pop.document.writeln('</head>');
		pop.document.writeln('<body topmargin=\"0\" leftmargin=\"0\" marginwidth=\"0\" marginheight=\"0\" onload=\"tamanho();\" bgcolor=\"#FFFFFF\">');
		pop.document.writeln('<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" bgcolor=\"#FFFFFF\">');
		pop.document.writeln('<tr bgcolor=\"#FFFFFF\">');
		pop.document.writeln('<td>');
		pop.document.writeln('<img src=\"' + imagemVar + '\" border=\"0\" name=\"foto\" onLoad=\"tamanho();\" ondragover=\"alertando();\">');
		pop.document.writeln('</td>');
		pop.document.writeln('</tr>');
		pop.document.writeln('</table>');
		pop.document.writeln('</body>');
		pop.document.writeln('</html>');
		pop.document.close();

		if (navigator.appName == "Netscape"){
			setTimeout("pop.location.reload();", 3000);
			setTimeout("pop.location.reload();", 200);}}
	else{
		setTimeout('loadCheck()',200);
	}
}
