/********************************************************************************



INTERFACE CONSTRUCTOR



********************************************************************************/



var browser=navigator.appName;



var version=navigator.appVersion;



var winHeight;



var winWidth; 



var xParam;



var tempBrowserID;



var nFix = 20;



var iFix = 4;



var leftOffset = 163;



var topPosition = 142;



var currentPosition;




if (browser.indexOf("Netscape") >= 0) {



  tempBrowserID = "Netscape";



  winHeight = window.innerHeight - nFix;



  winWidth = window.innerWidth - nFix;



}




else {



  tempBrowserID = "IExplorer";



  winHeight = document.body.clientHeight - iFix;



  winWidth = document.body.clientWidth - iFix;



}




var xParam = ((winWidth/2) - 210);



if (xParam <= 168) currentPosition = leftOffset



else currentPosition = xParam;




// enable or disable debug-mode



/*



alert('RUNNING BEBUG MODE, [DHTML core by P. Gielens at p.gielens@connexx.nl]' +'\n' +



      'Browser type = ' + tempBrowserID + '\n' +



      'Window specs = ' + winWidth + ' x ' + winHeight + ' px' + '\n' +




      'Parsed pos. = ' + xParam + ' px'); //enable while running debug mode



*/




/********************************************************************************



DHTML CONSTRUCTOR



********************************************************************************/



//The study



arMenu1 = new Array(



        menuWidth,currentPosition,topPosition,"","","","","","",



          "introduction","study_intro.html",0,



          "methods","study_meth.html",0,          



	  "contents","study_cont.html",0);



        currentPosition = currentPosition + 129;			







//The placements



arMenu2 = new Array(



	menuWidth,currentPosition,topPosition,"","","","","","",



          "preparation","place_prep.html",0,




	  "supervision","place_superv.html",0,



	  "expectations","place_expect.html",0,



	  "procedures","place_proced.html",0,



	  "miscellaneous","place_miscell.html",0,         



          "introductory placement","place_introd.html",0,

	  "final placement","place_final.html",0);


       currentPosition = currentPosition + 129;			





/********************************************************************************



INTERFACE FUNCTIONS



********************************************************************************/







function reLoad() {



  //catching resize bug...trough reHandle xParam



  window.parent.location.href=window.parent.location.href;



}




function displaySub() {



  return("<table border=0 cellspacing=0 cellpadding=0>"



	 + "<tr align=center>"



	 + "<td><A onmouseover=rollOn(6)  onmouseout=rolloff(6)  href=index.html><img src=images/menua6.gif  width=51 height=24 border=0 name=norm6 ></td>"



         + "<td><A onmouseover=rollOn(7)  onmouseout=rolloff(7)  href=search.html><img src=images/menua7.gif  width=55 height=24 border=0 name=norm7 ></td>"



         + "<td><A onmouseover=rollOn(8)  onmouseout=rolloff(8)  href=map.html><img src=images/menua8.gif  width=61 height=24 border=0 name=norm8 ></td>"



         + "<td><A onmouseover=rollOn(9)  onmouseout=rolloff(9)  href=fontys.html><img src=images/menua9.gif  width=89 height=24 border=0 name=norm9 ></td>"



         + "<td><A onmouseover=rollOn(10) onmouseout=rolloff(10) href=contact.asp><img src=images/menua10.gif width=79 height=24 border=0 name=norm10></td>"



	 + "</tr>"



	 + "</table>");



}




function displayMain() {



 return("<TABLE cellSpacing=0 cellPadding=0 width=750 border=0>"



        + "<TBODY>"



        + "<TR>"



        + "<TD><IMG height=29 src=images/003.gif width=163></TD>"



        + "<TD><A onmouseover=rollOn(1);popUp('elMenu1',event) onmouseout=rolloff(1);popDown('elMenu1',event) href=study.html><IMG height=29 src=images/menua1.gif width=129 border=0 name=norm1></A></TD>"        



        + "<TD><A onmouseover=rollOn(2);popUp('elMenu2',event) onmouseout=rolloff(2);popDown('elMenu2',event) href=place.html><IMG height=29 src=images/menua2.gif width=129 border=0 name=norm2></A></TD>"



        + "<TD><A onmouseover=rollOn(3) onmouseout=rolloff(3) href=benefits.html><IMG height=29 src=images/menua3.gif width=129 border=0 name=norm3></A></TD>"



        + "<TD><A onmouseover=rollOn(4) onmouseout=rolloff(4) href=offering.asp><IMG height=29 src=images/menua4.gif width=129 border=0 name=norm4></A></TD>"



        + "<TD><A onmouseover=rollOn(5) onmouseout=rolloff(5) href=faq.html><IMG height=29 src=images/menua5.gif width=71 border=0 name=norm5></A></TD>"



        + "</TR>"



        + "</TBODY>"



        + "</TABLE>");



}




/********************************************************************************



END



********************************************************************************/			