Player taking damage on collision. Can't get the script to work!?

var health = 50;
var damage = 10;
var Die = 0;

function ApplyDamage (damage : int) {
health -= damage;

 if(health <= 0) {
     Die();

}

function Die(); {
//Die and or Respawn
};
}

Error:
Assets/Player.js(12,10): BCE0044: expecting (, found ‘Die’.

Seems like you are “encapsulating” the function Die() inside ApplyDamage()…Obviously that’s not correct. It should be

function ApplyDamage(...){
   //...
}

function Die(){
   //...
}