Advertisement
| Hall of Fame |
|
[x]
Posted via EE Mobile
|
||
Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again. |
||
| Question |
|
[x]
Attachment Details
|
||
|
[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! |
||
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: |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
<script type="text/javascript">
function toggle(divId) {
var divArray = document.getElementsByTagName("div");
for(i = 0; i < divArray.length; i++){
if(divArray[i].id == divId){
if(divArray[i].style.display != 'none'){
divArray[i].style.display = 'none';
}else{
divArray[i].style.display = '';
}
}
}
}
</script>
</head>
<body>
<!--<body> -->
<table cellpadding="10">
<tr>
<td><font class="subHeading">Marketing Material Customization</font><br />
<br />
<form action="?" method="post" name="myform" id="myform">
<table border="0" cellpadding="5">
<tr valign="top">
<td bgcolor="E2D0B3" width="220">Preview Custom Details:
<div id="detailsNone">IF USER HAS UNCHECKED includeDetails CHECKBOX, SHOW ME... "You have selected not to add any ....."</div>
<div id="details"> <font style="font-size:16px; font-weight:bold; line-height:18px;">xxxxxxxxxxxxxxxx <br />
xxxxxxxxxxxxxx</font> <em>xxxxxxxxxxxxxxx </em> xxxxxxxxxxxxxxxxxxx <br />
xxxxxxxxxxx <br />
xxxxxxxxxxxxxxxx <br />
xxxxxxxxxxxxxxxxxxxxxxx <br />
xxxxxxxxxxxxxxxxxxxxxxxxxx
<div id="p_altPhone" style="font-size: 16px; vertical-align: middle; display: block; overflow: hidden;"></div>
<div id="email1" style="display:inline"> xxxxxxxxxxxxxxxx </div>
<div id="email2" style="display:none"> xxxxxxxxxxxxxxxxxx </div>
</div></td>
<td style="line-height:16px;"><!--<input name="includePhoto" type="radio" value="No">
No<br /> -->
<p><strong>Would you like to include your photo and personal details?</strong><br />
<input name="includeDetails" type="checkbox" value="Yes" checked="checked" onClick="toggle('details');" />
Yes</p>
<div id="details"> name, etc. </div>
<p><strong>Printing Preferences:</strong><br />
<input type="radio" name="printingPref" value="11x17" />
11 x 17 - <a href="#">Full 4 page Newsletter</a><br />
<input type="radio" name="printingPref" value="8x11_full" />
8 x 11 - <a href="#">Full 4 page Newsletter</a><br />
<input type="radio" name="printingPref" value="8x11_cond" />
8 x 11 - <a href="#">2 Page Only</a> </p>
<!-- Name/Logos -->
<!-- <input type="hidden" name="uselogo" id="uselogo" value="none"> -->
<input type="hidden" name="htext" id="htext" value="NoT Provided" />
<input name="" type="submit" value="Print" />
</td>
</tr>
</table>
</form></td>
</tr>
</table>
</body>
</html>
|