function przeskocz(gdzies)
{
    window.open(gdzies,'_self');
}

function przeskoczR(gdzies)
{
    parent.location.replace(gdzies);
}

function potwierdz(tresc,cel)
{
if (confirm(tresc))
 {
 parent.location.replace(cel);
 }
}

function renderNotepadLink( title, url ) {
	if( zalogowany == null || zalogowany == "" ) {
		return;
	}
	if( title == null || title == '' ) {
		return;
	}
	if( url == null || url == '' ) {
		url = document.location.href;
	}
	var addurl = 'strona.php?p=1669&note=add&title=' + title + '&url=' + escape( url );
	document.write(' | <a class="serwisy" href="' + addurl + '">dodaj do mojej teczki</a>');
}
