/* -------------------------------------- */
/* popup-function */


function popup(url,name,h,v,sc,st) {
	win = window.open(url,name,'width='+h+',height='+v+',scrollbars='+sc+',resizable=no,resize=no,toolbar=no,status='+st+',directories=no,menubar=no,location=no');
	win.document.open("text/html");
	win.document.write("<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n")
	win.document.write("<head><title>Deutsches Theater</title></head>\n");
	win.document.write("<body style=\"background-color:#9C3038;margin:0\">\n");
	win.document.write("\t<a href=\"javascript:close();\"><img src="+url+" galleryimg=\"false\" alt=\"schließen/close x\" style=\"border:none\"/></a>\n");
	win.document.write("</body>\n");
	win.focus();
win.document.close();
}