// JavaScript Document
function createPopupWindow(text){
	myWindow = window.open("", "InfoPopup", "width=480,height=400");
	myWindow.document.write("<html><head><title>Informationen zum Anbieter</title><link href=\"fileadmin/css/ikkclub.css\" rel=\"stylesheet\" type=\"text/css\"/></head><body onblur=\"this.close();\" style=\"padding:10 10 10 10;\"><scr" + "ipt language=\"JavaScript\" type=\"text/javascript\">document.write('" + text + "');</sc" + "ript></body></html>");
}
