function launchImages(type, id) 
{
	if (type == 'room')
		url = 'room_id=' + id;
	else if (type == 'fabric')
		url = 'csp_id=' + id;
	else
		url = 'id=' + id;

	newWin = window.open('/accounts/images.php?' + url,'NewWindow','width=500,height=400,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,copyhistory=no,resizable=yes');
	newWin.focus();
}