function nwin(url, winname, width, height, cont){
 var trails = "width=" + width + ", height=" + height + ",toolbar=no,directories=no,status=yes,scrollbars=no,resizable=no,menubar=no";
 if(cont == 'video'){var media_content = '\<html>\<head><!-- PageID 1689 - published by RedDot 7.5 - 7.5.2.17 - 14474 -->\</head>\<body style="margin-top:0px;margin-left:0px;">\<embed src="'+url+'" width="320" height="240">\</embed>\</body>\</html>'; newWindow = window.open('', winname, trails); with(newWindow.document){open(); write(media_content);}}
 else if(cont == 'image'){var media_content = '\<html>\<head>\</head>\<body style="margin-top:0px;margin-left:0px;background-color:#fff">\<table border=0 cellpading=10 cellspacing=0 height="100%" width="100%">\<tr>\<td valign=center align=center>\<img src="'+url+'" />\</td>\</tr>\<tr>\<td>\<a href="javascript:window.close()">\<img src="images/img_schliessen.gif" border=0 hspace=10/>\</a>\</td>\</tr>\</table>\</body>\</html>'; newWindow = window.open('', winname, trails); with(newWindow.document){open(); write(media_content);}}
 else{newWindow = window.open(url, winname, trails);}         
}