function confirmDelete(message)
{
	return confirm(message);
}
function PopupScalable(width,height,url)
{
	var left = (window.screen.availWidth/2) - width/2;
	var top = (window.screen.availHeight/2) - height/2;
	var features = 'directories=0,width=' + width + ',height=' + height + ',left=' + left + ',top=' + top + ',location=0,menubar=0,resizable=1,scrollbars=1,status=0,titlebar=0,toolbar=0';
	var win = window.open(url,'PopUp',features,true);
	win.focus();
}

function goToPage(obj)
{
	if (obj != null)
	{
		var page = obj.options[obj.selectedIndex].value;
		if (page != '')
		{
			document.location.href = page;
		}
		else
		{
			alert('page is empty');
		}
	}
	else
	{
		alert('object is null');
	}
}