function openwin(imgURL, title)
{
	var Wname = "popped";
	var exec = 'window.open("';

	var URL = "spawn.php?img="+imgURL+"&title="+title;
	exec += URL;  exec += '", "';
	exec += Wname; exec += '","';
	exec += 'width=200,height=200';
	exec += ',top=0,left=0,screenX=0,screenY=0,toolbar=0,location=0';
	exec += ',directories=0,resizable=1,status=0,menubar=0,scrollbars=0")';
	eval (exec);
}

function h_popup(w, h, url)
{
	var Wname = "popped";
	var exec = 'window.open("';

	var URL = url;
	exec += URL;  exec += '", "';
	exec += Wname; exec += '","';
	exec += 'width=' + w + ',height=' + h;
	exec += ',top=50,left=50,screenX=0,screenY=0,toolbar=0,location=0';
	exec += ',directories=0,resizable=0,status=0,menubar=0,scrollbars=0")';
	eval (exec);
}

