
function CreateEMail( name, text ){
zavinac = "@"
domena = "luca.cz"

    if( CreateEMail.arguments.length == 1 ) {
            document.write("<A HREF='mailto:"+name+""+zavinac+""+domena+"'>"+name+""+zavinac+""+domena+"</a>")
    } else {
            document.write("<A HREF='mailto:"+name+""+zavinac+""+domena+"'>"+text+"</a>")
    }

} 



function ShowDetail(width,height,url){
  LastERWin = window.open(url,'Detail','width='+width+',height='+height+',toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=1,resizable=0');
     
}

function CloseAndOpen(url, winheader){
     LastERWin = window.open(url, winheader);
     window.close();
}

function CloseCurrentWindow(){
     window.close();
}




