// redirection directe des pages vers l'index

function redirindex(){
if(parent.frames.length==0)window.location.replace("http://www.chru-strasbourg.fr");
}



// vérification de framage de la page
var dest
function redir(dest){
if(parent.frames.length==0)top.location='../index.html?'+dest+'';
}

// vérification de framage de la page
var dest
function redirservices(dest){
if(parent.frames.length==0)top.location='../../index.html?'+dest+'';
}


// remise en frame de la page
function framepage(){
var query = (location.href.indexOf("?")+1);
var page = './HTML/accueil.html'

if (query)
{
page = location.href.substring(query);
}

document.write("<frameset rows='100,*' border='0'>");
document.write("<frame name='haut' src='./HTML/haut.html' scrolling=NO noresize frameborder='0' marginwidth='0' marginheight='0' >");
document.write("<frameset cols='200,*'>");
document.write("<frame name='menu' src='./JSP/menu5.jsp' scrolling=no noresize frameborder='0' marginwidth='0' marginheight='0'>");
document.write("<FRAME NAME='info' SRC='" + page + "' SCROLLING=AUTO NORESIZE frameborder='0' marginwidth='0' marginheight='0'>");
document.write("</FRAMESET></FRAMESET><noframes></noframes>");
}
