function Validate(form){
var formData = document.ApplicationForm

		if ( formData.ApplicationDocument.value == "" ) {
            
            alert("Lütfen dosya seçiniz.");
			formData.ApplicationDocument.focus();
            return false;
        }			
		
}

function DosyaEkle(url,form) 
{
	var formData = document.ApplicationForm
	
	self.name = "ana";
	var winl = (screen.width - 400) / 2;
	var wint = (screen.height - 150) / 2;
    popupWin = window.open(url,'Urun', 'top=' + wint + ',left=' + winl + ',width=500,height=120,scrollbars=no,resize=yes')	
}

