Advertisement
|
[x]
Attachment Details
|
||
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: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<link href="../style.css" rel="stylesheet" type="text/css" />
<title>The page</title>
<style type="text/css">
div {
margin: 10px auto;
}
#links {
color: red;
}
</style>
<script type="text/javascript">
function doForm() {
document.getElementById('formDiv').style.zIndex = "100";
document.getElementById('formDiv').style.display = "";
}
function doForm1() {
document.getElementById('formDiv1').style.zIndex = "100";
document.getElementById('formDiv1').style.display = "";
}
function doForm2() {
document.getElementById('formDiv2').style.zIndex = "100";
document.getElementById('formDiv2').style.display = "";
}
function doForm3() {
document.getElementById('formDiv3').style.zIndex = "100";
document.getElementById('formDiv3').style.display = "";
}
function clearForm(frm) {
frm.title1.value = '';
frm.protocol.options[0].selected = true;
frm.link1.value = '';
frm.desc1.value = '';
}
function quitForm(frm) {
document.getElementById('formDiv').style.zIndex = "-1";
document.getElementById('formDiv').style.display = "none";
document.getElementById('body').style.backgroundColor = "white";
clearForm(frm);
}
function quitForm1(frm) {
document.getElementById('formDiv1').style.zIndex = "-1";
document.getElementById('formDiv1').style.display = "none";
document.getElementById('body').style.backgroundColor = "white";
clearForm(frm);
}
function quitForm2(frm) {
document.getElementById('formDiv2').style.zIndex = "-1";
document.getElementById('formDiv2').style.display = "none";
document.getElementById('body').style.backgroundColor = "white";
clearForm(frm);
}
function quitForm3(frm) {
document.getElementById('formDiv3').style.zIndex = "-1";
document.getElementById('formDiv3').style.display = "none";
document.getElementById('body').style.backgroundColor = "white";
clearForm(frm);
}
</script>
</head>
<body id="body" >
<table><TR><TD><img src="graph-client.jpg" width="516" length="516" usemap="#client">
<map id ="client" name="client">
<area shape ="rect" coords ="0,0,258,258"
onMouseOver="doForm();" />
<area shape ="rect" coords ="0,0,516,258"
onMouseOver="doForm1();" />
<area shape ="rect" coords ="258,258,516,516"
onMouseOver="doForm2();" />
<area shape ="rect" coords ="0,516,258,258"
onMouseOver="doForm3();" />
</map>
<div id="formDiv" style="width: 10%; margin: 0 auto; padding: 10px; background-color: #ffffff; text-align: center; z-index: -1; position: absolute; top: 50px; left: 50px; border: solid 1px gray; font-weight: bold; display: none;" onmousemove="quitForm();">
<h3>Box One</h3>
<br />Something about outputting<br />
</div>
<div id="formDiv1" style="width: 10%; margin: 0 auto; padding: 10px; background-color: #ffffff; text-align: center; z-index: -1; position: absolute; top: 50px; left: 250px; border: solid 1px gray; font-weight: bold; display: none;" onmousemove="quitForm1();">
<h3>Box Two</h3>
<br /><br />
</div>
<div id="formDiv2" style="width: 10%; margin: 0 auto; padding: 10px; background-color: #ffffff; text-align: center; z-index: -1; position: absolute; top: 450px; left: 250px; border: solid 1px gray; font-weight: bold; display: none;" onmousemove="quitForm2();">
<h3>Box Three</h3>
<br /><br />
</div>
<div id="formDiv3" style="width: 10%; margin: 0 auto; padding: 10px; background-color: #ffffff; text-align: center; z-index: -1; position: absolute; top: 450px; left: 50px; border: solid 1px gray; font-weight: bold; display: none;" onmousemove="quitForm3();">
<h3>Box Four</h3>
<br /><br />
</div>
</body>
</html>
|
|
[x]
The Solution Rating System
|
||
|
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
|
Loading Advertisement... |
| Open Discussion |