var clients = new Array();
clients[0] = 'NS Surfboards';
clients[1] = 'Incandescence';
clients[2] = 'Civrac';
clients[3] = 'National Lobster Hatchery';
clients[4] = 'The Foam Asylum';
clients[5] = 'Kulfi Kids';
clients[6] = 'ikandi:media';
clients[7] = 'Shebbear College';
clients[8] = 'Eco Timber Frame';
clients[9] = 'NHS';
clients[10] = 'Maxwell Rogers';
clients[11] = 'Nessie Maclay';
clients[12] = 'Rainbow Spirit';
clients[13] = 'Curling Contractors';
clients[14] = 'The Heat Store';
clients[15] = 'Honeyrose Organic Bakery';
clients[16] = 'Chagford Dental Practice';
clients[17] = 'Digital Markets';

function info(panel) {
	if (panel == -1) {
		document.getElementById('info').innerHTML = '&nbsp;';
		}
	else {
		document.getElementById('info').innerHTML = clients[panel];
	}
	return;
}

function pic(iWidth, iHeight, iUrl) {
	win = window.open(iUrl, 'win', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=' + iWidth + ',height=' + iHeight + ',left=200,top=200');
	return;
}