function updateFlashHint( id )
{
	var image = "http://www.adobe.com/shockwave/download/images/flashplayer_100x100.jpg";
	var text = "Please update your FlashPlayer...";
	var url = "http://www.adobe.com/products/flashplayer/";
	var target = "_blank";
	var elem = document.getElementById( id );
	var class = elem.className;
	var left = Number( getStyleSheet( "." + class ).style.width.split( "px" )[ 0 ] - 100 ) / 2 + "px";
	var top = Number( getStyleSheet( "." + class ).style.height.split( "px" )[ 0 ] - 100  ) / 2 + "px";
	elem.innerHTML = "<a href='" + url  + "' target='" + target +"'><img style='margin-top:" + top + "; margin-left: " + left +";' border='0' title='" + text +  "' src='" + image + "'></img></a>";
}

function getStyleSheet( name )
{	 
	if( !name || !document.styleSheets ) return null;
	 
	var i = document.styleSheets.length;
    while( i-- )
    {
		var rules = document.styleSheets[ i ].rules ? document.styleSheets[ i ].rules :
     	document.styleSheets[ i ].cssRules;
       	var j = rules.length;
       	while( j-- ) { if(rules[ j ].selectorText == name) return rules[ j ]; }
    }
    return null;
}