function open_win(img,w,h){
   text_link= "width="+w+",height="+h+",scrollbars=0,toolbar=no,menubar=no,status=no,location=no,top=0,left=0,resizable=1"
   window.open(img,'img',text_link);
}
function open_win_new() {
	open_win('viewhomeflash.asp',485,417);
}

function validate() {
	file11=document.getElementById("filetoprint").value;
	if (document.getElementById("filetoprint").value=="") {
		alert("Por favor sube un archivo y presiona el botón de enviar.");
		return false;
	}
	if (file11.indexOf(".exe")!= -1) {
	alert("Este Tipo de archivo no está permitido. Por favor elije un archivo de imagen.");
	document.getElementById("filetoprint").value='';
	return false;
	}
//	document.getElementById("Submit").disabled=true;
	document.upform.submit();
	return ShowProgress();
}
