
function checkForFrame() {
  var destination = "";

  if (!parent.frames[1]) {
  
	if (self.location.pathname) {
	
	   destination = "?go=" +  self.location.pathname;

	   parent.location.href = "http://www.jakse.at/index.html" + destination;
	
	}
  }
}

