/* AUTEUR: JCN Consultant */
/* Date de création: 18/09/2003 */
//Drop-down Document Viewer- © Dynamic Drive (www.dynamicdrive.com)
//For full source code, 100's more DHTML scripts, and TOS,
//visit http://www.dynamicdrive.com

//Specify display mode (0 or 1)
//0 causes document to be displayed in an inline frame, while 1 in a new browser window
var displaymode=1
//if displaymode=0, configure inline frame attributes (ie: dimensions, initial document shown
var iframecode='<iframe id="external" style="width:95%;height:600px" src="http://www.jcnconsultant.com"></iframe>'

/////NO NEED TO EDIT BELOW HERE////////////

if (displaymode==0)
document.write(iframecode)

function gone(){
var selectedurl=document.jumpy.example.options[document.jumpy.example.selectedIndex].value
if (document.getElementById&&displaymode==0)
document.getElementById("external").src=selectedurl
else if (document.all&&displaymode==0)
document.all.external.src=selectedurl
else{
if (!window.win2||win2.closed)
win2=window.open(selectedurl,"fiche","0,0,menuBar=1,toolbar=1,resizable=yes,scrollbars=yes,0,width=800,height=450,left=350,top=180");
//else if win2 already exists
else{
win2.location=selectedurl
win2.focus()
}
}
}