function openWindow(url) {
  popupWin = window.open(url, 'remote', 'menubar,toolbar,location,status,scrollbars,resizable,width=800,height=600');
}

function OpenUrlWindow(url)
{
	var msg = open(url, "_top");
	return true;
}


function Delete(url)
{
	var retcode = true;
	retcode = confirm('Are you sure, you want to Delete?');

	if (retcode)
	    parent.location.href = url;
}

function SignOut(url)
{
	var retcode = true;
	retcode = confirm('Are you sure, you want to SignOut?');

	if (retcode)
	    parent.location.href = url;
}
