// *** collected functions for filmspiegel, here we go: ************

// *** open new window, with focus *********************************

function openBrWindow(theURL,winName,features) {
	BrWindow=window.open(theURL,winName,features);
	if (window.focus) {BrWindow.focus()}
}

// *** random styles ***********************************************
//
// var id = parseInt(Math.round((Math.random() * 10)).toString());
// document.writeln("<link rel='stylesheet' href='css/randomStyles" + id + ".css' type='text/css'>");

// *** fullscreen **************************************************
//
// window.moveTo(0,0);
// window.resizeTo(screen.width - 10,screen.height - 30);


// *** 04-01-2010 martin niggemann, www.weltrettung.org ************