// JavaScript Document
function bg_change(objekt,farbe) {
	objekt.style.background = farbe;
}

function tc_change(objekt,farbe) {
	document.getElementById(objekt).style.color = farbe;
}

function image_new_window(url,winName,winParams)	{	//
	var theWindow = window.open(url,winName,winParams);
	if (theWindow)	{theWindow.focus();}
}