function openSablona(idname){
no=window.open("","_blank","width=775,height=555,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no");
with(no.document){
open();
writeln('<html><head><title>Šablony</title></head><body style="margin:0px;">');
}
no.document.writeln('<img src="'+RootDir+'savedata/sablony/'+idname+'" alt="">');
with(no.document){writeln('</body></html>');}
}

function openMini(idname){
window.open(idname,'_blank');
/*
no=window.open("","_blank","width=980,height=760,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no");
with(no.document){
open();
writeln('<html><head><title>Webové prezentace za 1000 Kè</title></head><body style="margin:0px;">');
}
no.document.writeln('<img src="'+RootDir+'savedata/miniprezentace/'+idname+'" alt="">');
with(no.document){writeln('</body></html>');}
*/
}

function showResourceCode(){
document.getElementById('resourcecode').style.visibility='visible';
document.getElementById('resourcecode').style.display='block';
}

function hideResourceCode(){
document.getElementById('resourcecode').style.visibility='hidden';
document.getElementById('resourcecode').style.display='none';
}