this javascript might help to redirect you
<SCRIPT LANGUAGE="JavaScript">
window.location.replace("weekend.php")
</script>
You might also be able to use
<?php
if ($d=="Fri")
include('weekend.php');// I want this to open up weekend.php
else
include('day.php');// I want this to open up day.php
This wont redirect you but it will load the contents of this file into the current page
Hope this helps
Tim