
function openwin(url, width, height, includescroll) 
{
	var newWin = window.open( url, "NewProductsLaunchPad", "toolbar=no,location=no,status=no,menubar=no,scrollbars=" + includescroll + ",width=" + width + ",height=" + height + ",resizable=yes" );
	newWin.focus();
	newWin.visibility = "visible";
	window.status = "";
	return true;
}

function ListBoxSelectAll(ListControl,SetSelected)
{
	var listbox = document.getElementById(ListControl);
	for (var i=0; i < listbox.length; i++) 
	{
		listbox.options[i].selected = SetSelected;
	}
}

