

function openwincontentimage(url,w,h,s,r) {
       var x = w + 32;
		var scrl; var resze; 
  if (s) { scrl="scrollbars=yes";}
  else { scrl="scrollbars=no"; }
  if (r) { resze = "resizable=yes,"; }
  else { resze="resizable=no,"; }
  if (!w) w = 672;
  if (!h) h = 480;

  HTML = "<html><title>Novartis Transplantation</title><style>body{margin:0px 0px 0px 0px}</style><body onBlur='top.close()'><img src='../"+ url +"' border=0 name=load_image onLoad='window.resizeTo("+ w +","+ h +")'></body></html>";
  
  popupImage = window.open('load_image','_blank',resze+scrl+',left=50,top=50');
  popupImage.document.open();
  popupImage.document.write(HTML);
  popupImage.document.close();
  
}
function openwin(url,w,h,s,r) {
  var scrl; var resze; 
  if (s) { scrl="scrollbars=yes,";}
  else { scrl="scrollbars=no,"; }
  if (r) { resze = " resizable=yes,"; }
  else { resze=" resizable=no,"; }
  if (!w) w = 672;
  if (!h) h = 480;
  fenster = window.open(url,"name",scrl+resze+"width="+w+",height="+h+",top=50,left=100");
    fenster.focus();
 }
function MM_openBrWindow(theURL,winName,features) {
        winName = winName.replace(/[^A-Z,0-9]/gi, '');
  		x = window.open(theURL,winName,features);
  		x.focus();
	}
