
// diverse scripts SE 2001


var h = 600; 
var w = 800; 

function browsCheck()
{
if (navigator.appName != "Microsoft Internet Explorer")
{alert ("Your Browser is not Microsoft Internet Explorer - this page may not work correctly");}
else if (navigator.appVersion < "4.0")
{alert ("Your Internet Explorer is a previous version - Script errors may occur");}
else if (!navigator.javaEnabled())
{alert ("Your Browser does not support JavaScript - This will incur errors");}
else if (screen.width < "800")
{alert ("Your Screen supports less than 800 pixels - Unadequate for this page");}
};


function nytV(Target)
{
h = vindueH() - 150; w = 100 + vindueW() / 2;
awindow = 
window.open(Target,"Karin Sauer","toolbar=0,top=10,left=30,location=0,directories=0,status=0,menubar=0,scrollbars=2,resizable=1,width=" + w + ",height=" + h);
awindow.window.focus();
};

function vindueH()
{
h=screen.height;
if (h < "600") {h = "600"}; if (h > "1200") {h = "1200"};
return h;
};

function vindueW()
{
w=screen.width;
if (w < "800") {W="800"}; if (w > "1600") {w = "1600"};
return w;
};

function flytDet(obj,flytX,flytY)
{
obj.pixelLeft += flytX
obj.pixelTop += flytY
};

function foto(Target, w, h)
{
w = w + 20; h = h + 20;
awindow = 
window.open(Target + ".jpg", Target,"toolbar=0,top=50,left=60,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,width=" + w +",height=" + h);
awindow.window.focus();
};

function fotohtm(Target)
{
h = vindueH() - 150; w = vindueW()/ 2 + 100;
awindow = 
window.open(Target + ".htm", Target,"toolbar=0,top=10,left=30,location=0,directories=0,status=0,menubar=0,scrollbars=2,resizable=1,width=" + w +",height=" + h);
awindow.window.focus();
}

// END OF LINE
