var pp;
function showc()
	{
	if( !pp ) pp = window.createPopup(  );
	var t = '<div style="background-color: Menu; border: 2px outset; width:184px; padding:0px 0px 0px 0px; height:100%; cursor: default;">\
		<table width="100%" border="0" cellpadding="0" cellspacing="0">\
		<tr>\
		<td height="21" style="font-family: Verdana;	font-size : 11px;	color : MenuText; padding: 1px 5px 1px 5px;"'+
		'onmouseover="parent.window.popup_over( this );" onmouseout="parent.window.popup_over( this, 1 );" '+
		'onclick="w=parent.window.open( \'http://sys.lv/index.php?q=KSxVZU5VVU1KTAdRUENRD0VTXl5HXQ==\', \'_blank\', \'\' );parent.window.popup.hide( );">About <b>SYS.LV</b> banner system </td>\
		</tr>\
		</table>\
		</div>';
		
	pp.document.body.innerHTML = t;
	pp.show( event.clientX, event.clientY, 184, 25 , document.body );
	event.returnValue = false;
	event.cancelBubble = true;	
	}
	
function popup_over( obj, id )
	{
	if( typeof obj != 'object' ) return ;
	if( !id  )
		{
		obj.style.backgroundColor = "HighLight";
		obj.style.color = "HighLightText";
		return ;
		}
	obj.style.backgroundColor = "Menu";
	obj.style.color = "MenuText";
	}
	
//############################################
	
function remfr( )
	{
	if( window.location.search.indexOf( 'nf=true' ) != -1 )
		{
		var el = document.getElementById( 'div1' );
		if( el )
			{
			el.style.display = 'none';
			el.style.visibility = 'hidden';
			return;
			}
		}
	}	
if( navigator.userAgent.indexOf( "MSIE" ) != -1 ||  navigator.userAgent.indexOf( "Opera" ) != -1 ) window.attachEvent( 'onload' ,remfr );		