/* 
This function operates the popup window capability for map links 
*/


function FifthWindow(url) {

var ElementWindow = window.open(url,'FifthWin','width=502,height=325, location=yes, scrollbars=yes,menubar=yes,resizable=yes,toolbar=yes,top=40,left=60');

ElementWindow.focus();

return false;
}

