function my_message () { 
	var flg=confirm("This page is an alias. Any changes to the page will be made to the second page.\n\nClick OK to continue. Otherwise click Cancel.\n"); 
	if (flg)
		return true; 
	return false; 
}

function land_confirm_message () {
        var flag=confirm("Are you sure you want to change this alias to a regular page?\n\nClick OK to continue. Otherwise click Cancel.\n");
        if (flag)
                return true;
        return false;
}

function schedule_redirect_message () {
        var flag=confirm("All modification can only be done at the DirectWest admin section.\n\nClick OK to go there now. Otherwise click Cancel.\n");
        if (flag)
                return true;
        return false;
}
 

