function Poppy(linky)
	{
	fullpath = linky.href;
	juicypartstart = fullpath.indexOf('s/screenshots');

	if (juicypartstart >= 0)
		{
		juicypart = '../' + fullpath.substring(juicypartstart);
		dims = 'width=700,height=500,'
		}
	else
		{
		juicypartstart = fullpath.indexOf('cabinet.php');
		juicypart = fullpath.substring(juicypartstart);
		
		if (fullpath.indexOf('bowl-o-rama.jpg') >= 0)
			{
			if (window.screen.height <= 800)	h = window.screen.height - 50;
			else								h = 820;
			
			if (window.screen.width <= 600)		w = window.screen.width;
			else								w = 660;

			dims = 'width=' + w + ',height=' + h + ',';
			juicypart += '&h=800';
			}
		else
			{
			dims = 'width=540,height=660,'
			if (fullpath.indexOf('sketch2.jpg') >= 0)
				{
				dims = 'width=700,height=500,';
				}
			else
				{
				dims = 'width=540,height=660,';
				juicypart += '&h=640';
				}
			}
		}
	
	window.open(juicypart,'ssWin',(dims + 'location=no,resizable=yes,scrolling=no,status=yes,toolbars=yes,menubar=no'));
	return false;
	}
