function adjustContentHeight()
{
	jQuery(document).ready(
		function()
		{
            $("#content_main").height($("#content").height());
		}
	)
}

function scmp(a,b)
{
    var al=a.length;
    var bl=b.length;
    
    if ( al>bl )
    {
        return ( a.substr(0,bl) == b );
    }
    if ( bl>al )
    {
        return ( b.substr(0,al) == a );        
    }
    return ( a==b );
}

function sGetParam(s,p)
{
	var result=s.split(" ");
	if ( result.length<=p )
	{
		return false;
	}
	return result[p];
}

function socialLogOut (type)
{	
	return true;
}

