﻿Open inc/plugins/myspecs.php and replace the function system_specs() with the function below:

function system_specs(&$post)
{

	$post['system_specs'] = "<a href=\"javascript:;MyBB.popupWindow('misc.php?action=specs&amp;uid={$post['uid']}', 'SystemSpecs', 350, 500);\"><img src=\"images/computer.png\" alt=\"System Specs\" /></a>";

}



Edit postbit and postbit_classic

FIND:
{$post['onlinestatus']}

ADD AFTER (no line break):
{$post['system_specs']}

It will look like this:
{$post['onlinestatus']}{$post['system_specs']}