
function starturl(_url)
	{
		thiswin = window.self;
		thiswin.opener = window.self;

		window.location.href = _url;
	}

function rahmen(high, _id)
{
	switch(high)
	    {
	        case 0:
				document.getElementById(_id).style.color='#FFFFFF';
				document.getElementById(_id).style.borderColor='#000000';
				document.getElementById(_id).style.backgroundColor = '#5F5F5F';
				break;
	        case 1:
	            document.getElementById(_id).style.backgroundColor = '#7DAF21'; /* 46641E 78B618 */
				document.getElementById(_id).style.color='#FFFFFF';
				break;
    	    case 2:
    	        document.getElementById(_id).style.color = '#5F5F5F';
		        document.getElementById(_id).style.borderColor='#000000';
				document.getElementById(_id).style.backgroundColor='#F5F5F5';
				break;
 	        case 3:
 	            document.getElementById(_id).style.backgroundColor = '#5F5F5F';
				document.getElementById(_id).style.color='#FFFFFF';
				break;
   	    }
}

