function buildAdvMapLinks(){var topWidthOffset=4;var topHeightOffset=4;var monthWidth=46;var monthHeight=25;var monthWidthOffset=15;var monthHeightOffset=10;var areaMappingString="";var imgMap=document.getElementById("advMap");for(i=0;i<4;i++){for(j=0;j<3;j++){var monthNumber=i*3+j+1;var topLeftWidth=topWidthOffset+j*(monthWidth+monthWidthOffset);var topLeftHeight=topHeightOffset+i*(monthHeight+monthHeightOffset);var bottomRightWidth=topLeftWidth+monthWidth;var bottomRightHeight=topLeftHeight+monthHeight;var area=document.createElement("area");area.setAttribute("alt","View Calendar");area.setAttribute("shape","rect");area.setAttribute("style","cursor:pointer");area.setAttribute("coords",topLeftWidth+","+topLeftHeight+","+bottomRightWidth+","+bottomRightHeight);area.onclick=function(){jQuery.facebox({ajax:"../../LoadActivityDescriptorsByMonth.action?month="+monthNumber});return false};imgMap.appendChild(area);}}}