function potwierdz_delete(nazwa)
{
    return window.confirm("UWAGA!\nCzy chcesz skasować  \"" + nazwa + "\"  ?");
}
function potwierdz_archive(nazwa)
{
    return window.confirm("UWAGA!\nCzy przenieść do archiwum  \"" + nazwa + "\"  ?");
}
function potwierdz_public(nazwa)
{
    return window.confirm("UWAGA!\nCzy odzyskać artykuł \"" + nazwa + "\" z archiwum ?");
}
function zaznacz_delete(nazwa,FieldName)
{
    var targetField = document.getElementsByName(FieldName).item(0);
    if(targetField.checked)
	return window.confirm("UWAGA!\nCzy chcesz skasować  \"" + nazwa + "\"  ?");
    else
	{
	window.alert("UWAGA!\nJeśli chcesz skasować artykuł zaznacz wymagane pole");
	return false;
	}
}

function selecturl(s) {
    var gourl = s.options[s.selectedIndex].value;
    if (gourl) {gourl = gourl + '.php';}
    else {gourl = 'cms.php';}
    window.top.location.href = gourl;
}

function selecturlarchive(s) {
    var gourl = s.options[s.selectedIndex].value;
    if (gourl) {gourl = 'archiwum.php?rubryka=' + gourl;}
    else {gourl = 'cms.php';}
    window.top.location.href = gourl;
}


