I hope that kinda explains it, but from my initial page I would like a popup, kinda a mini browser window with navigation controls on it, I have the code that seems to work for the pop up and centering which is:
<a href="services3.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('nonflash','','images/nonflash_over.jpg',1)" onclick="NewWindow(this.href,'services3.html','760','420','yes');return false">
Which I've put on the button that enters the site and I put this on the head section
var win = null;
function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
win = window.open(mypage,myname,settings)
}
So what I really want to know is how to put in a Navigation bar in the button script! Thanks for any advice
<a href="services3.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('nonflash','','images/nonflash_over.jpg',1)" onclick="NewWindow(this.href,'services3.html','760','420','yes');return false">
Which I've put on the button that enters the site and I put this on the head section
var win = null;
function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
win = window.open(mypage,myname,settings)
}
So what I really want to know is how to put in a Navigation bar in the button script! Thanks for any advice