function fnc_0_showPopup ( type )
	{
		screenHeight = screen.availHeight;
		screenWidth  = screen.availWidth;
		
		posX = ( ( screenWidth - 500 ) / 2 );
		posY = ( ( screenHeight - 200 ) / 2 );
		
		popup = window.open ( "./html/0_details.php?type=" + type , "vwbDetails" , "width=500,height=200,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no" );
		popup.moveTo ( posX , posY );
		popup.focus ( );
	}
