function validationGen()
{
var x=window.confirm("Press 'OK' if you are sure with the filled entries and continue or  press 'Cancel' go back and re-check. ")
if (x)
{

return true;
}

return false;
}

