function show(source, name, width, height, resizable, scrollbars) {
	window.open(source, name, "width=" + width + ",height=" + height + ",resizable=" + resizable + ",scrollbars=" + scrollbars + "");
}
// <a href="Javascript:show('index.html', 'sms', '400', '400', 'no', 'no')">Test</a>

function fehler() {
	alert('Na, hier war n Fehler');
}

function message(text) {
	alert(text);
}