function stl_SetBackgroundColor( oObjectP, sColorP )
{
	//  onMouseOver="stl_SetBackgroundColor(this,'');" onMouseOut="stl_SetBackgroundColorBack(this);"
	var sColor = new String();
			
		
	if ( ( sColorP == "" ) || ( sColorP == null ) )
		sColor = "#dce4c0";
	else
		sColor = sColorP;
	oObjectP.style.backgroundColor = sColor;
	//oObjectP.style.borderColor = "#ffffff";
	oObjectP.style.color = "#185b1a";
}
		
function stl_SetBackgroundColorBack( oObjectP, sColorP )
{
	var sColor = new String();

	if ( ( sColorP == "" ) || ( sColorP == null ) )
		sColor = "#185b1a";
	else
		sColor = sColorP;
	oObjectP.style.backgroundColor = sColor;
		
	stl_SetBackgroundColor( oObjectP, sColor );
	//oObjectP.style.borderColor = "#ffffff";
	oObjectP.style.color = "#f7faf5";
}

function jp_AnkerTag( sLinkP )
{
	if ( ( sLinkP != "" ) && ( sLinkP != null ) )
		top.location.href = sLinkP;
//	window.alert( sLinkP );
}

function jp_AnkerTagNewWindow( sLinkP )
{
	var winNewWindow;
		if ( ( sLinkP != "" ) && ( sLinkP != null ) )
	{
		winNewWindow = window.open( sLinkP, "", "left=0,top=0" );
		winNewWindow.focus();
	}
//	window.alert( sLinkP );
}
