// JavaScript Document
function FensterOeffnen (Adresse) {
  Fenster1 = window.open(Adresse, "Zweitfenster", "menubar=no,status=no,locationbar=no,scrollbars=yes, width=850,height=750,left=210,top=100");
  Fenster1.focus();
  } 
function FensterSchliessen(){self.close();} 
// get offset
function gSO() {
	document.cookie = "PAGE_OFFSET=" + window.getScroll().y + "; path=/";
}

function vscroll(offset) {
	window.addEvent('load', function()	{
		document.cookie = "PAGE_OFFSET=0; path=/";										
		window.scrollTo(null, parseInt(offset));
	});
}