Hier ist noch der Quellcode für die CallFunctions, vielleicht braucht man diesen ja. Hoffe mir kann jemand helfen, ich komm nicht mehr weiter!
function CallFunctions ()
{
GetHoehe ();
GetBreite ()
}
function GetHoehe ()
{
var Hoehe;
Hoehe = document.body.offsetHeight;
if (Hoehe < 600)
{
Hoehe = 600;
}
document.write (Hoehe);
}
function GetBreite ()
{
var Breite;
Breite = document.body.offsetWidth;
if (Breite < 1000)
{
Breite = 1000;
}
document.write (Breite);
}