function Swap_Important_Changes(pi_str_Content_ID, pi_str_Image_ID)
{
	obj_Item = document.getElementById(pi_str_Content_ID);
	img_Expand = document.getElementById(pi_str_Image_ID);
	if(obj_Item.style.display == 'none')
	{
		obj_Item.style.display = '';
		img_Expand.src = '../pde/images/important_minus.gif';
	}
	else
	{
		obj_Item.style.display = 'none';
		img_Expand.src = '../pde/images/important_plus.gif';
	}
}

function open_popup(pi_str_Url, pi_str_Title, pi_str_Style, pi_int_Width, pi_int_Height)
{
var str_Params;

	str_Params = 'scrollbars=yes,resizable=yes,toolbar=yes,location=yes,directories=yes,menubar=yes';
	if (pi_str_Style == "browser") str_Params = 'scrollbars=yes,resizable=yes,toolbar=yes,location=yes,directories=yes,menubar=yes';
	if (pi_str_Style == "window") str_Params = 'scrollbars=yes,resizable=yes,toolbar=no,location=no,directories=no,menubar=no';
	if (pi_str_Style == "fixed") str_Params = 'scrollbars=no,resizable=no,toolbar=no,location=no,directories=no,menubar=no';
	
	if (pi_int_Width != 'undefined') str_Params = str_Params + ',width=' + pi_int_Width;
	if (pi_int_Height != 'undefined') str_Params = str_Params + ',height=' + pi_int_Height;
//	str_Parms = str_Parms + ',left=' + pv_int_Left;
//	str_Parms = str_Parms + ',top=' + pv_int_Top;

	if (window)
	{
		window.open(pi_str_Url, pi_str_Title, str_Params);
		return false;
	}

	return true;
}