//Zufallsspruch in ext. Browserfenster laden
function spruch() {

	//-- Zufallszahl aus 0..2
	var x = Math.round(2*Math.random());
	if (x < 10) x = '00' + x;
	if ((x < 100) && (x >= 10)) x = '0' + x;
	theURL = x + '.htm';
        spruchbeutel=window.open(theURL,'spruchbeutel','width=300,height=200,screenX=1,screenY=1,dependent=yes,status=no,resizable=no,toolbar=no,scrollbars=yes');
        spruchbeutel.focus();
}




function openBrWindow(theURL,winName,features) {
        window.open(theURL,winName,features);
}


//Sprechblase laden
function Sprechblase() {

	//-- Zufallszahl aus 0..2
	var x = Math.round(2*Math.random());
	if (x < 10) x = '00' + x;
	if ((x < 100) && (x >= 10)) x = '0' + x;
	theURL = x + '.htm';
}

// extra browser window
function feature(theURL,winName,features) {
	window.open(theURL,winName,features);
}


