<?php
$w = array(0);
$h = array(0);
$n = array(A);
while($row = mysql_fetch_array($piclist))
	{
	array_push($n, $row["id"]);
	array_push($w, $row["width"]);
	array_push($h, ($row["height"] + 60));
	}

function getWidth($searchkey, $n, $w)
	{
	$count = array_keys($n, $searchkey);
	$width = $w[$count[0]];
	return $width;
	}
function getHeight($searchkey, $n, $h)
	{
	$count = array_keys($n, $searchkey);
	$height = $h[$count[0]];
	return $height;
	}
function makeString($searchkey, $n, $w, $h)
	{
	$width = getWidth($searchkey, $n, $w);
	$height = getHeight($searchkey, $n, $h);
	$str = "'popup','scrollbars=no,resizable=no,";
	$str = $str . "width=";
	$str = $str . $width;
	$str = $str . ",height=";
	$str = $str . $height;
	$str = $str . ",left=80,top=100'";
	
	return $str;
	}
?>
