function makepage(toggle){var sbdef=266;var togclodef=90;var windheight=$(window).height();var windwidth=$(window).width();var botheight=$('#bot').outerHeight({ margin: true});var topheight=$('#topbar').outerHeight({ margin: true});var togheight=$('#tog').innerHeight({ margin: true});var togheight=18;var topwidth=windwidth;var sbheight=windheight - (topheight+botheight+togheight);var mapheight=windheight - (topheight+botheight);var sbdisplay='';if (toggle=='tog' && $("#sbar").css("display") !='none'){sbdisplay='off';} else if (toggle=='notog' && $("#sbar").css("display")=='none'){sbdisplay='off';} else if (toggle=='initial' && $.cookie('mapstatus')=='noshow'){sbdisplay='off';} else{sbdisplay='on';} if (sbdisplay=='off'){$('#sbar').css("display","none");var sbwidth=0;var togwidth=togclodef;var togleft=windwidth - togwidth;var sb_border=0;$('#opt').empty().append('<img src="/gm/im/open_ar.gif" alt="open side-bar"/> OPEN ME!');$.cookie('mapstatus', 'noshow',{expires: 365, path:'/', domain: ('.'+domsnip)});} else{var sb_border=1;var sbwidth=sbdef;var togwidth=sbdef;var togleft=windwidth - togwidth;$('#sbar').css("display","block");$('#opt').empty().append('<img src="/gm/im/close_ar.gif" alt="close side-bar"/> CLOSE');$.cookie('mapstatus', 'show',{expires: 365, path:'/',domain: ('.'+domsnip)});} var mapwidth=windwidth - sbwidth;var  mbord=2;var  m_in=1;$('#map').css("width",mapwidth - mbord).css("height",mapheight -mbord).css("position","absolute").css("top",topheight+m_in+"px").css("left",  m_in +"px");$('#tog').css("width",(togwidth - 1)).css("position","absolute").css("top",topheight+"px").css("left", (togleft)+"px").css("display","block");$('#sbar').css("width",sbwidth - sb_border).css("height",sbheight).css("position","absolute").css("top",topheight+togheight+"px").css("left",mapwidth+"px");$('#bot').css("width",windwidth);};
