//########################################################################################
//JavaScript Pop Ups bei News Bildern
function Test( Picture, breit, hoch ){
	//alert('test');
	NewWindow=window.open("","Picture","height="+hoch+",width="+breit+",toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0");
	NewWindow.document.write ("<html><head><title>Picture");
	NewWindow.document.write ("</title></head>");
	NewWindow.document.write ("<body style=\'padding:0; margin:0;\' bgcolor=\'#FFFfff\'>");
	NewWindow.document.write ("<img src=\"http://p109101.typo3server.info/uploads/tx_simpleglossar/");
	NewWindow.document.write (Picture);
	NewWindow.document.write ("\" onClick=\'window.close()\'/>");
	NewWindow.document.write ("</body></html>");
	NewWindow.document.close();
}
