// Address cloaking script.
//Rogier Gruys/David Wolowicz, University of Victoria, 2004
function address(one, zero, something, subject)
{

	var a = 'ma';
	var b = 'il';
	var c = 'to:';
	document.write('<a href="');
	document.write(a+b+c);
	document.write(zero);
	document.write('&#64;');
	document.write(one);
	if (subject){
		document.write('?subject='+subject);
	}
	document.write('" title="">');
	if (something){
		//document.write(zero);
		document.write(something);
		document.write('</a>');
	}
	else{
		document.write(zero);
		document.write('&#64;');
		document.write(one+'</a>');
	}
}

function addressText(one, zero, nearzero)
{

	var a = 'ma';
	var b = 'il';
	var c = 'to:';
	document.write('<a href="');
	document.write(a+b+c);
	document.write(zero);
	document.write('&#64;');
	document.write(one);
	document.write('" title=""><u>');
	document.write(nearzero+'</u></a>');
}


function getMainContentWidth(){
	var screenx = screen.width-226;
	//<table width="994" height="100%" cellspacing="0" cellpadding="0" border="0">
	document.write('<td width="' + screenx +'">&nbsp;</td>');
}

function getMainTableWidth(){
	var screenx = screen.width-30;
	//<table width="994" height="100%" cellspacing="0" cellpadding="0" border="0">
	document.write('<table width="' + screenx + '" height="100%" cellspacing="0" cellpadding="0" border="0">');
}

function getBodyTag(){
	//<body bgcolor="#FF0000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" background="Pics/HG_Alu.jpg">
	document.write('<body bgcolor="#FF0000" leftmargin="0" topmargin="0" marginwidth="0" ');
	document.write('marginheight="0" background="Pics/HG_Alu.jpg" ');
	document.write('onLoad="MM_preloadImages(');
	document.write('\'Pics/Profigeraete_black.gif\', \'Pics/Profigeraete_red.gif\',');
	document.write('\'Pics/Home_black.gif\', \'Pics/Home_red.gif\',');
	document.write('\'Pics/Wir_ueber_uns_black.gif\', \'Pics/Wir_ueber_uns_red.gif\',');
	document.write('\'Pics/Gartengeraete_black.gif\', \'Pics/Gartengeraete_red.gif\',');
	document.write('\'Pics/Zweiraeder_black.gif\', \'Pics/Zweiraeder_red.gif\',');
	document.write('\'Pics/Service_black.gif\', \'Pics/Service_red.gif\',');
	document.write('\'Pics/Aktionen_black.gif\', \'Pics/Aktionen_red.gif\',');
	document.write('\'Pics/Kontakt_black.gif\', \'Pics/Kontakt_red.gif\',');
	document.write('\'Pics/Geschaeftszeiten_black.gif\', \'Pics/Geschaeftszeiten_red.gif\',');
	document.write('\'Pics/Anreise_black.gif\', \'Pics/Anreise_red.gif\'');
	document.write(')">');
}

function getContainerTag(){
	var screeny = screen.height;
		if (screeny<="800"){
			document.write('<div id="divContainer"><div id="divContent">');
		}
		else {
			document.write('<div id="divContainer_lang"><div id="divContent_lang">');
	}
}

