function popExtras()	
{
	var oSmallMap= document.getElementById("lnkSmallMap");
	oSmallMap.onclick = openSmallMap;
	oSmallMap.onkeypress = openSmallMap;

	var oLargeMap= document.getElementById("lnkLargeMap");
	oLargeMap.onclick = openLargeMap;
	oLargeMap.onkeypress = openLargeMap;
}


function openSmallMap()
{
	clean();
	var iheight = iHeight*.95;
	var itop = .01*iHeight;
	var ileft= .01*iWidth;
 	wnd =  window.open('smallMap.htm',null,'height='+iHeight+',width=720,left='+ileft+',top='+itop+',location=no,menubar=no,status=no,toolbar=no,resizeable=yes,scrollbars=yes,titlebar=no');
	return false;

}


function openLargeMap()
{
	clean();
	var iheight = iHeight;
	var iwidth = iWidth;
	if(iwidth > 1100){iwidth = 1100}
 	wnd = 
 	window.open('largeMap.htm',null,'height='+iheight+',width='+iwidth+',left=0,top=0,location=no,menubar=no,status=no,toolbar=no,resizeable=yes,scrollbars=yes,titlebar=no');
	return false;
}
