

var url = "http://shiatsu-ingrid.at/"; //Should this page be in frames?
// y for yes and n for no
	frameEnforcer("y");
	function frameEnforcer(frames) {
	if (frames == 'y'){
		if (self.parent.frames.length == 0){
			self.parent.location = url;
		}
	}
	else if (frames == 'n'){
	if (self.parent.frames.length != 0){				self.parent.location=url;
		}
	}
}


