Alex,
You'd have to query the user to find if their IP address matched the one you wanted to target, such as:
if ($REMOTE_ADDR = "62.149.146.226") {
}
You can't instruct the browser to deliver a pop-up window using PHP, so it'd be better to set a javascript variable using PHP, like so:
<head>
<script type="text/javascript">
<? if ($REMOTE_ADDR = "62.149.146.226") { ?>
var pop = 1;
<? } else { ?>
var pop = 0;
<? } ?>
</script type="text/javascript">
</head>
<body onload="if (pop == 1) dopop_up()">
Cheers,
David