<!-- Begin
// test variables
function newwin(label,w,h){  
	var src = label;
		// Set up Page Colors & Table 
		currentdate = new Date ();
	var segundos = currentdate.getSeconds();
		var minutos = currentdate.getMinutes();
		var horas = currentdate.getHours();
		var wind = segundos+minutos;
	if (w == null) {w = 600;}
	if (h == null) {h = 450;}
	size = 'width=' + w + ',height=' + h;
	window.open(label, wind ,'scrollbars=yes,status=yes,left=0,top=0,screenX=0,screenY=0,resizable=yes,alwaysRaised=1,'+size);
}

function deletaArquivo(arquivo) {
	arquivo_value = arquivo.value;
	if (arquivo_value.length < 1) {
		alert("campo nao contem nome do arquivo");
		return;
	}
	newwin('/delImage.asp?caminho_arquivo=' + arquivo_value,400,150);
	arquivo.value = "";
}

function incluirImagem(retorno,tipo) {
	
	//alert(diretorio);
	//alert(retorno);
	//alert(eval("document." + retorno + ".value").length);
	newwin("/upImage.asp?return=" + retorno + "&tipo=" + tipo ,450,200);
}

//-->

