1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
<HTML>
<HEAD>
<SCRIPT LANGUAGE="JavaScript"><!--
function updateParent()
{
if(document.childForm.emp1.checked == true){opener.document.deployment.emp1.value = 'ok'} else{opener.document.deployment.emp1.value = 'no'}
self.close();
return false;
}
function updateChild()
{
if(opener.document.deployment.emp1.value == 'ok'){document.childForm.emp1.checked = true}
return false;
}//-->
</SCRIPT>
<!-- Liens vers les différentes feuilles de styles -->
<link rel="StyleSheet" type="text/css" href="../sheets/sty_classid.css">
<link rel="StyleSheet" type="text/css" href="../sheets/sty_tag.css">
</HEAD>
<BODY onLoad="return updateChild();">
<div style="overflow: scroll">
<table border="0" style="margin-top:30px; margin-left:50px;" width="300px">
<tr>
<td>
<div id="nifty3">
<b class="rtop3">
<b class="r13"></b> <b class="r23"></b> <b class="r33"></b> <b class="r43"></b>
</b>
<FORM NAME="childForm" onSubmit="return updateParent();">
<input type="checkbox" name="emp38" value="ok" unchecked>Amiot Sebastien<br <BR><INPUT TYPE="SUBMIT" VALUE="Update parent">
</FORM>
<b class="rbottom3">
<b class="r43"></b> <b class="r33"></b> <b class="r23"></b> <b class="r13"></b>
</b>
</div>
</td>
</tr>
</table>
</div>
</BODY>
</HTML> |
Partager