The background image in the new window will be the background image of march.html page. If you have code that will open a new window like you want, what is it? It can be applied to the link as an onclick event. Something like (in the head):
Code:
<script type="text/javascript">
<!--
/****************************************************
Author: Eric King
Url: http://redrival.com/eak/index.shtml
This script is free to use as long as this info is left in
Featured on Dynamic Drive script library (http://www.dynamicdrive.com)
****************************************************/
var win=null;
function NewWindow(mypage,myname,w,h,scroll,pos){
if(pos=="random"){LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
if(pos=="center"){LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;}
else if((pos!="center" && pos!="random") || pos==null){LeftPosition=0;TopPosition=20}
settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable=yes';
win=window.open(mypage,myname,settings);
};
// -->
</script>
Then for your link:
Code:
<a href="march.html" onclick="NewWindow(this.href,'_blank','400','350','yes','center');return false"
onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Image8','','march3small.jpg',1)"
><img src="march2small.jpg" name="Image8" width="300" height="180" border="0" id="Image8" /></a>
Bookmarks