hharchester
11-23-2004, 11:54 AM
Really don't understand your problem you seem to have the code already done, just add the window properties to it...
function goThere(){
if(!document.theForm.theMenu.selectedIndex==""){
var url = document.theForm.theMenu.options[document.theForm.theMenu.selectedIndex].value;
var newWin = window.open(url, "windowName", "width=800,length=700,left=200,resizable=yes,scrollbars=yes,top=80");
}
}
function goThere(){
if(!document.theForm.theMenu.selectedIndex==""){
var url = document.theForm.theMenu.options[document.theForm.theMenu.selectedIndex].value;
var newWin = window.open(url, "windowName", "width=800,length=700,left=200,resizable=yes,scrollbars=yes,top=80");
}
}
