// JavaScript functions

function RotateLogo() {
	var ImageTDTagID = 'logo';
	var Images = new Array(
	'./gfx/osframe.png',
	'./gfx/osframe2.png'
	);
	RandImage = Math.round(Math.random()*Images.length);
	if( Images.length == RandImage ) RandImage = 0;
		ri = Images[RandImage];
	if (document.images) {
		document.images[ImageTDTagID].src=ri;
	}
}

function showBild(bname,pfad,descr)
{
	var bildWnd = window.open("", bname, "status,scrollbars");
	bildWnd.document.open();
	bildWnd.document.write("<HTML>\n<HEAD>");
	bildWnd.document.write("<TITLE>"+ bname +"</TITLE>\n");
	//bildWnd.document.write("<LINK REL='STYLESHEET' TYPE='TEXT/CSS' HREF='./css/style.css' />\n");
	bildWnd.document.write("</HEAD>\n");
	bildWnd.document.write("<BODY BGCOLOR='#FFFFFF'>\n");
	bildWnd.document.write("<P STYLE='BORDER-BOTTOM: 1PX SOLID #CCCCCC;'><STRONG>"+ bname +"</STRONG></P>\n");
	bildWnd.document.write("<IMG SRC='"+ pfad +"' ALT='"+ bname +"' BORDER='0' TITLE='"+ bname +"'/>\n");
	bildWnd.document.write("<P>"+ descr +"</P>\n");
	bildWnd.document.write("<A HREF='#' onClick='self.close();' title='Fenster schliessen'>Fenster schlie&szlig;en</A>\n");
	bildWnd.document.write("<HR COLOR='#CCCCCC' NOSHADE='NOSHADE' SIZE='1'/>\n&copy; rand-gruppe.de\n");
	bildWnd.document.write("</BODY>\n");
	bildWnd.document.write("</HTML>\n");
}

