Redirect standard salesforce view of child object to skuid page of parent

Maybe # is not a valid character to use in the action parameter…

dirty workarround: Javascript

<apex:page standardController="Related_Person__c" showHeader="false" sidebar="false" readonly="true" docType="html-5.0">
<html>
<head>
<script>
function goToPatientPage(){
document.location='/apex/skuid__ui?page=PatientChart&amp;id={!Patient_Name__c}#related_person';
}
</script>
</head>
<body onload="gotoPatientPage();">
<img src="loading.gif"> Redirecting    <----- this is completely optional
</body>
</html>
</apex:page>