/* SKIN BASIC - $Revision: 8507 $ - $Date: 2011-04-04 16:55:38 -0300 (lun, 04 abr 2011) $  ****************/ 
function myshopDynamicSizing(){
	var c,server=(self.myshop&&myshop().version>=3);
			
	if(!getElementOnId("myshp_menu_side")){
		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 _extLnks(){if(!document.getElementsByTagName)return;var as=document.getElementsByTagName("a");for(var i=0;i<as.length;i++){var a=as[i];if(a.getAttribute("href")&&a.getAttribute("rel")=="external")a.target="_blank";}}
	_extLnks();
}

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":"";
}
