// JavaScript Document

function openPopup(name, kind) {
	var width;
	var height;

	switch(kind) {
		case 'small':
			width = 600;
			height = 500;
			break;
		case 'medium':
			width = 900;
			height = 700;
			break;
		default:
			width = 800;
			height = 600;
			break;
	}

	var popup = window.open('', name,
			'width=' + width + ',height=' + height +
			',scrollbars=yes,toolbar=no,status=no,resizable=yes,menubar=no,location=no,directories=no,top=10,left=10');
	popup.focus();
}

