/*
 * common.js for dbna.de
 * created 12.04.2009 for AdManagement > Wallpaper / Hockeystick
*/

function checkWallpaper() 
{
	//alert('Funktion CheckWallpaper wird ausgeführt');
	if (typeof(adtype) != 'undefined') 
	{

		if (adtype == 'wallpaper') 
		{
		// Schiebe Skyscraper rechtsbündig an Leaderboard
		document.getElementById("fullbanner").style.width="728px";
		document.getElementById("fullbanner").style.left="195px";
		document.getElementById("fullbanner").style.top="20px";
		document.getElementById("fullbanner").style.textAlign="right";
		document.getElementById("skyscraper").style.left="923px";
		document.getElementById("skyscraper").style.top="20px";
		document.getElementById("skyscraper").style.textAlign="left";
		}
		if (adtype == 'expwallpaper') 
		{
		// Schiebe Sky rechts unter das Leaderboard
		
		// Positionierung Leaderboard (728x90)
		document.getElementById("fullbanner").style.width="728px";
		document.getElementById("fullbanner").style.left="275px";
		document.getElementById("fullbanner").style.top="20px";
		document.getElementById("fullbanner").style.textAlign="right";
		document.getElementById("fullbanner").style.verticalAlign="bottom";
		
		// Positionierung Skyscraper (max. 160x600, rechts-aligned)
		document.getElementById("skyscraper").style.width="160px";
		document.getElementById("skyscraper").style.left="843px";
		document.getElementById("skyscraper").style.top="110px";
		document.getElementById("skyscraper").style.textAlign="right";
		document.getElementById("skyscraper").style.verticalAlign="top";
		}
	}
	if (typeof(bgcolor) != 'undefined' && bgcolor != null) 
	{
	// Färbe mögliche Bereiche ein
	// zuvor: entferne dbna Standardhintergrund
	document.body.style.backgroundImage="none";
	document.getElementById("main").style.backgroundImage="none";
	document.body.style.backgroundColor = bgcolor;
	
	//alert ('bgcolor ist ' + bgcolor);
	}
	if (typeof(bgimage) != 'undefined' && bgimage != null) {
	// Setze Hintergrund Bild
	document.body.style.backgroundImage="none";
	document.getElementById("main").style.backgroundImage="none";
	document.body.style.backgroundImage = bgimage;
	}
	if (typeof(adclick) != 'undefined' && adclick != null) 
	{
	// Verlinke bei Klick auf Hintergrund auf adclick
	}
}