function openPopUp(object, width, height)
{
	new_window = window.open(
		object,
		'popupWindow',
		'width=' + width + ',height=' + height + ',urlbar=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no'
	);
}
