function ChangePic(picture)
{
	switch(picture)
	{
		case 'welcome':
		{
			picture = 'pic_welcome.jpg';
			break;
		}
		case 'products':
		{
			picture = 'pic_products.jpg';
			break;
		}
		case 'contact':
		{
			picture = 'pic_contact.jpg';
			break;
		}
		case 'gtc':
		{
			picture = 'pic_gtc.jpg';
			break;
		}
		case 'company':
		{
			picture = 'pic_company.jpg';
			break;
		}
	}		
	this.LinkPicture.innerHTML='<img src="../images/' + picture + '" width="59" height="137">';
}

function newWindow(site, breite, hoehe)
{
	var BrowserName = navigator.appName;
	if(BrowserName == "Microsoft Internet Explorer")
	{
		window.open(site, "new", "height="+hoehe+",width="+breite+",top=40,left=80,statusbar=0,scrollbars=no,menubar=0"); 
	}
	else
	{
		window.open(site, "new", "height="+hoehe+",width="+breite+",screenX=80,screenY=40,statusbar=0,scrollbars=no,menubar=0"); 
	}
}
function newWindow2(site, breite, hoehe)
{
	var BrowserName = navigator.appName;
	if(BrowserName == "Microsoft Internet Explorer")
	{
		window.open(site, "new", "height="+hoehe+",width="+breite+",top=40,left=80,statusbar=0,scrollbars=yes,menubar=0"); 
	}
	else
	{
		window.open(site, "new", "height="+hoehe+",width="+breite+",screenX=80,screenY=40,statusbar=0,scrollbars=yes,menubar=0"); 
	}
}
