
function Message( str )
{
	alert(str);
}

function getButton( strID,url )
{
	strID.src = url;
}

function setclass( strID,className )
{
	strID.className = className;
}

function Verweis( Str,url )
{
	alert(Str);
	window.parent.close();
	window.opener.location.href = url;
}

function Verweis1( Str,url )
{
	alert(Str);
	window.parent.close();
	window.opener.location.replace( url );
}

function Verweis2( url )
{
	//window.parent.close();
	window.open( url );
}

function Verweis3( Str )
{
	alert(Str);
	window.parent.close();
}

function Verweis4( url )
{
	window.location.replace( url );
}

function Verweis5( Str,url )
{
	alert(Str);
	window.location.replace( url );
}

