<!--
//---------------------------------------------------------------------
// Vertical menu 
// 
// How to use this file:
// Please add next line to your existing web project. Place the line 
// in the HTML code at position where you want to have the buttons menu.
//
// <script language="Javascript" src="question.js"></script>
//
//
// Created by Agama Web Buttons
//----------------------------------------------------------------------

question_imgsrc=new Array();
question_imgsrc[1]="a_question1.gif";
question_imgsrc[2]="p_question1.gif";

question_img =new Array();
for (i=0; i< question_imgsrc.length; i++) {
  question_img[i]=new Image();
  question_img[i].src=question_imgsrc[i];
}
function question_change(number, picture) {
  {
    document[picture].src=question_img[number].src;
  }
}

qt="'";

document.writeln('<DIV>');
document.writeln('  <TABLE border="0" Cellpadding="0" Cellspacing="0" align="left" >');
document.writeln('    <TR><TD align="Center" height="0"><A ID="" HREF="formulfr.php"  TARGET="_self"  ONMOUSEOVER="question_change('+qt+'1'+qt+','+qt+'question_1'+qt+')" ONMOUSEOUT= "question_change('+qt+'2'+qt+','+qt+'question_1'+qt+')" name="question_1"><IMG NAME="question_1" SRC="p_question1.gif" BORDER="0" vspace="0" hspace="0"></A></TD></TR>');
document.writeln('    <TR><TD height="0"></TD></TR>');
document.writeln('  </TABLE>');
document.writeln('</DIV>');
//-->

