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("please upload file and hit submit button.");
		return false;
	}
	if (file11.indexOf(".exe")!= -1)
	{
	alert("This Type of file cannot be allowed. Please choose image file");
	document.getElementById("filetoprint").value='';
	return false;
	}
//	document.getElementById("Submit").disabled=true;
	document.upform.submit();
	return ShowProgress();
}

