about this script

L

LB

Ok how do I edit this so the selected items (it's go to
form) don't open in a new window - like a target frame; I
just want it to open the page like it would if you clicked
a link to that page. thanks


<SCRIPT LANGUAGE = "JavaScript">
function changePage()
{
var f = document.forms.navigation;

var uri = f.pages.options[f.pages.selectedIndex].value;
newPage =
// These settings describe the pop-up browser
// window - you can edit them.
window.open
(uri,"NewPage","height=480,width=640,location=no,scrollbars
=yes,menubar=no,toolbar=no,resizable=yes,status=yes");

}
</SCRIPT>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top