Creo que te podría quedar mas estructurado de la siguiente manera:
Cita: <script language="javascript">
function funcionJS(sURL)
{
parent.main.location=sURL;
}
</script>
y en tu evento onclick le pasas la URL, te paso el ejemplo usando botones:
Cita: <INPUT type="button" value="Ir" onclick="funcionJS('Reports.aspx');">
<br>
<INPUT type="button" value="Ir" onclick="funcionJS('facturacion.aspx';">
..
..
Creo que es mas simple así no ??