// MNB 8/26/08
// Used to hold pop up window functionality

// Opens a new popup window with all extra functionality turned off
function open_pop_up(url, name, height, width)
{
	var features = 'height=' + height + ',width=' + width + ',location=0,directories=0,toolbar=0,menubar=0,scrollbars=1,resizable=1,status=0';

	window.open(url, name, features);
}