
function QueryString_Parse()
{
	var query = "" + window.location;
	var temp = "";

	if(query.indexOf("#") != -1)
	{
		temp += (  query.substring(query.indexOf("#")+2,query.length) );
	}

	return temp;
}



function getSCCID()
{
	var query = "" + window.location;
	var temp = "";

	if(query.indexOf("?") != -1)
	{
		temp += (  query.substring(query.indexOf("?")+1,query.length) );
	}

	return temp;
}
