/* Copyright - TelePronto */

/* newWindow to make a PopUp Window with specified url, titel, width and height */
/* Settings: 
	Status=no or yes -> Show the Browser Status Bar
	Scrollbars=no or yes -> Show's vertical and horicontal Scrollbar's
	Resizeable=no or yes -> Allow to resize the PopUp Window with the mouse cursor (in Firefox and Safari the standard is resizable)
*/
function newWindow (url, titel, width, height)
{
 fenster = window.open(url, titel, "width="+width+",height="+height+",status=no,scrollbars=yes,resizable=no");
 fenster.focus();
}

/* Image Changer to change you're Images in a navigation and so on.. */
	/* Copy this Code for every image, you want to make changeable */
	imgchange1a = new Image();
	imgchange1a.src = "images/nav1a.jpg";     /* normal-Image*/
	imgchange1b = new Image();
	imgchange1b.src = "images/nav1b.jpg";     /* Highlight-Image */
	/* End Copy Code for every Image */

function changeImage(Bildname,Tauschbildname)
{
	document.images[Bildname].src = eval(Tauschbildname + ".src")
}
