function showPgContent(tabid)
{
	if(tabid!='' && tabid!=undefined)
	{
		changecontent(tabid);
		
	}
	else if(tabid=='' || tabid==undefined)
	{
		var args = getArgs();
		if(args.pgtab)
		{
			changecontent(args.pgtab);
		}
	}
}

function showExpertDet(expid)
{
	
	if(expid!='' && expid!=undefined)
	{
		changepopup(expid);
		
	}
	else if(expid=='' || expid==undefined)
	{
		var args = getArgs();
		if(args.tabid)
		{
			showPgContent('3')
			changepopup(args.fexpert);
		}
		else if(args.fexpert && !args.tabid)
		{
			changepopup(args.fexpert);
		}
		else if(!args.fexpert && !args.tabid)
		{
				showPgContent('2');	
		}
	}
}

function closepopup(i)
{
 for(j=1;j<10;j++)
  {
   document.getElementById('divPopup'+j).style.display = 'none';
   document.getElementById('right_col'+j).style.display = 'none';
   document.getElementById('first').style.display = 'block';
  }
}
