var msgx = "Please confirm your entries.";

function ValidateOutline () {

Check = confirm(msgx);
if (Check == true) {
document.send.action="outline.php";
return true
}
else 
{
 return false;
};

}

function ValidateVote () {

Check = confirm(msgx);
if (Check == true) {
document.send.action="vote.php";
return true
}
else 
{
 return false;
};

}

function ValidateRegister () {

Check = confirm(msgx);
if (Check == true) {
document.send.action="register.php";
return true
}
else 
{
 return false;
};

}



