function openPopupNone(theUrl, height, width)
{
	var features = "toolbar=no,location=no,status=no,menubar=no,resizable=yes,scrollbars=yes,width=" + width + ",height=" + height;
	myWindow = window.open(theUrl, 'NewWindow', features);
	myWindow.focus();
}

function openPopupAll(theUrl, height, width)
{
	var features = "toolbar=yes,location=yes,status=yes,menubar=yes,resizable=yes,scrollbars=yes,width=" + width + ",height=" + height;
	myWindow = window.open(theUrl, 'NewWindow', features);
	myWindow.focus();
}
