

function openImageLarge(shckp,x,y)
{  //alert("");
	shcknw = window.open('', '','width='+x+',height='+y+',resizable=yes,toolbar=no,scrollbars=no,menubar=no,status=no,directories=no,location=no');
  
	shcknw.document.open();
	shcknw.document.write("<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'>");
	shcknw.document.write("<html>");
	shcknw.document.write("<head>");
	shcknw.document.write("<title>CorTech GmbH</title>");
	shcknw.document.write("</head>");
	shcknw.document.write("<body marginwidth=10 marginheight=10>");
	shcknw.document.write("<table width=100% align=center><tr><td><img src="+shckp+" alt='' ></td><td width=10>&nbsp;</td></tr></table>");
	shcknw.document.write("</body></html>");
	shcknw.document.close();
}

function openWindow ( address , pic, x , y ) {
  obj = window.open( address, "", "width="+x+",height="+y+",resizable=yes,toolbar=no,scrollbars=no,menubar=no,status=no,directories=no,location=no");
  obj.focus();
}


function makeBookmark (  )
{

  url = document.URL;
  titel = document.title;

  if (window.sidebar) 
  { // Mozilla Firefox Bookmark
	window.sidebar.addPanel( titel, url,"" );
  } 
  else if ( window.external ) 
  { // IE Favorite
	window.external.AddFavorite( url, titel ); 
  }
  
  return 0;
}


