i think i know what you want just just to clarify.
you have the site map in a pop up window.
say you have a link in the pop up window called about us ...
when you click thelink "about us" in the pop up window you want the parent window to take you to the about us page.
do you want the ste map window to close as well??
if what i just stated above what you want you can use the code below.
<script language="JavaScript">
//Function to open link in main window
function openInMainWin(winLocation){
window.opener.location.href = winLocation
window.opener.focus();
window.close();
}
</script>
the link should look like this
<a href="javascript:openInMainWin('Licence.asp)">
Click Here</a>
if you have any problems reply back