function openWin(theURL,winName,features) { //v2.0
 	winName = window.open(theURL,'Kontakt','scrollbars=no,resizable=no,width=600,height=640');
	winName.resizeTo(600,640);
	winName.focus();
}