Still no luck!!! Grrr...
On the current page I have the following snippets:
<form name="Main" onsubmit="return newPage()" action="rpt_name.php" method="post">
<script>
function newPage(){
if (document.Main.page_opt[1].checked){
alert("AR Option selected"

;
document.location.href = 'rpt_name.php';
}
if (document.Main.page_opt[2].checked){
alert("Management Option selected."

;
}
if (document.Main.page_opt[3].checked){
alert("Productivity Option selected."

;
}
}
</script>
My original script flowed like this:
1. User selects month from dropdown.
2. User clicks submit and rpt_name.php(page) is pulled up list several report links (pulled from database).
I've added option buttons and now the user still selects a month but also selects from four radio buttons. If the user selects any radio button besides "All", I want a different page to show up and not the rpt_name.php(page).
Is it because on my current script that I have action="rpt_name.php" causing me to not be able to make it load a different page in the newPage() function?
Also, I am running on a Linux box/running Apache so I am fairly sure that any ASP syntax is not going to work.?.?.?