function OpenNewWindow3DPP(ModelName) {
  NewLocation = "http://demo.3dpublisher.net/miteebite/Default.asp?ModelName=" + ModelName;
  NewWindow = window.open(NewLocation,"Catalog","width=600,height=650");
  NewWindow.focus();
}

function oeffnefenster (url, title, width, height, alt) {	
	var width = parseInt(width)+10;
	var height = parseInt(height)+47;
  var attributes="width="+width+",height="+height+",scrollbars=no";
  fenster=window.open("", "", attributes);
	var popup_content = '<html><head><title>'
											+title+'</title><link rel="stylesheet" type="text/css" href="/screen.css" /></head><body style="padding:5px"><a href="javascript:window.close()"><img class="noBorder" src="'
											+url+'" alt="'+alt+'" /></a><br /><p style="margin-top:10px;text-align:center"><a href="javascript:window.close()">Fenster schliessen</a></p></body></html>';
	fenster.document.open();
	fenster.document.write(popup_content);
	fenster.document.close();
	// fenster nach 10 sekunden schliessen:
	//fenster.setTimeout("window.close()",10000);

}