/*
	 Java-Script fuer kahl-schwerlast.de
	 IT-On.NET 27.06.2007
*/


function openBild(width, height)    // Bildfenster anzeigen
{
 	if (! width ) width = 800;
	if (! height ) height = 600;
	window.open('/layout/blank.html','bild','location=0,directories=0,menubar=0,resizable=1,toolbar=0,status=1,scrollbars=1,width='+width+',height='+height+'');
} // openBild

function openFilm(width, height)    // Filmfenster anzeigen
{
 	if (! width ) width = 600;
	if (! height ) height = 500;
	window.open('/layout/blank.html','film','location=0,directories=0,menubar=0,resizable=1,toolbar=0,status=1,scrollbars=1,width='+width+',height='+height+'');
} // openFilm

