function bilderanzeige(datei) {
var bildfenster=window.open(datei,'Bild','scrollbars=yes,status=no,menubar=no,resizable=yes,location=no,toolbar=no,width=400,height=300');
bildfenster.focus();
}

function logo() {
if(screen.width <1024) {
text="<img src='images/logo.gif' width='100' height='67' border='0' alt='Logo Fahrschule RAD'> ";
}
else if (screen.width >= 1200){
text="<img src='images/logo.gif' width='125' height='84' border='0' alt='Logo Fahrschule RAD'> ";
}
else {
text="<img src='images/logo.gif' width='125' height='84' border='0' alt='Logo Fahrschule RAD'>";
}

document.open();
document.write(text);
document.close();
}

function schilder() {
if(screen.width <1024) {
text="<img src='images/schilder.gif' width='40' height='133' border='0' alt='' align='right'> ";
}
else if (screen.width >= 1200){
text="<img src='images/schilder.gif' width='60' height='200' border='0' alt='' align='right'> ";
}
else {
text="<img src='images/schilder.gif' width='60' height='200' border='0' alt='' align='right'>";
}

document.open();
document.write(text);
document.close();
}

function layout() {
if(screen.width <1024) {
text="<link rel='stylesheet' href='rad800.css' type='text/css'>";
}
else if (screen.width >= 1200){
text="<link rel='stylesheet' href='rad1200.css' type='text/css'>";
}
else {
text="<link rel='stylesheet' href='rad.css' type='text/css'>";
}

document.open();
document.write(text);
document.close();
}
