// Create PopUp window to select items from one listbox into another listbox
function ShowPopup(myurl) 
{
	var newWindow;
	var props = 'scrollBars=yes,resizable=yes,toolbar=no,menubar=no,location=no,directories=no,width=800,height=800';
	newWindow = window.open(myurl, "VendorAppPopup", props);
}
