/**
 * Funkcja odwoluje sie do komponentu o podanym id i przekazuje
 * dane odnosnie akcji
 *
 * @author Łukasz Bobiński
 */
function __componentBack( strAction, strComponentName, strComponentId )
{
	a =  document.location
	strPath = new String( a );
	if( intPos = strPath.indexOf( '?' ) > 0 )
	{
		/*
		arrPath = strPath.split( '?' );
		alert( a );
		alert( arrPath );
		strLocation = strPath[1];
		*/
		strLocation = '';
	}
	else
	{
		strLocation = '?';
	}
	strLocation += strPath;
	strLocation += '&_cBack=1';
	strLocation += '&_cCName=' + strComponentName;
	strLocation += '&_cCID=' + strComponentId;
	strLocation += '&_cAction=' + strAction;
//	alert( strLocation );
	document.location=strLocation;
}
