
//Download & email
document.write('<A id="SMail"></A>');

function FreedownlodMSG(msg,lnk){
	var Mail;
	Mail = prompt(msg,'');
	
	if (isEmpty(Mail)){
	
		
		FreedownlodMSG(msg,lnk);
		
	}else{
	
		if (Mail!=null){
	
		
			SMail.href = 'cgi-bin/php/Mail.php?Mail=' + Mail
			//SMail.click();

            window.location.assign(SMail.href);
						
		}
		
	
	}


}


function OnClick(pack){

	if (pack=="D"){
		FreedownlodMSG("Enter your correct e-mail address to free download.                                        Eg: info@helpsofts.com ",'diamond');
		
	}else{
		FreedownlodMSG("Enter your correct e-mail address to free download.                                        Eg: info@helpsofts.com ",'Gold');
	}
	
	

}

var reg = new RegExp('\\S+');

function isEmpty(exp){
	return !reg.test(exp);
	 

}

