
function myshopDynamicSizing(){
	var c,server=(self.myshop&&myshop().version>=3);

	if(server||!hasMenu()){
		c=getElementOnId("myshp_contentframe");
		if(c){
			c.style.width="100%";
			c.style.textAlign="center";
		}
		c=getElementOnId("myshp_content");
		if(c&&c.style)c.style.textAlign="center";
	}
	if(!server){
		c=getElementOnId("myshp_menu_side_topbar");
		if(c){
			if(c.style){
				if(c.style.backgroundColor)c.style.backgroundColor=getFGColor();
				c.style.display=(getCVE("_searchblock")=="0")?'none':'block';
				if(getSearchMethod()==4)c.style.height="50px";
				else c.style.height="33px";
			}
		}
		document.body.bgColor=getBGColor();
	}
}

function clearTabs(){
    var n=0,c;
    do{
        c=document.getElementById('myshp_menuitem'+(++n));
        if(c)c.className=c.className='';
    }while(c);
}

function swapTab(tab) {
	clearTabs();
	var c=document.getElementById(tab);
	if(c)c.className ="myshp_tabOn";
}

function swapSubmenu(menu){
	var c=document.getElementById(menu);
	if(c)c.style.display=(c.style.display=="none")?"block":"";
}
