function drawAskUWP () {
var randomBG="http://www.uwplatt.edu/admission/images/askuwp/background"+(Math.round(Math.random()*5))+".gif";

document.write('<style type="text/css">');
document.write('#intelliresponse {background:#cdf url('+randomBG+') no-repeat; width:550px;height:72px;margin:1em auto;padding:0;position:relative;}');
document.write('#intelliresponse span {margin-left:-999em;}');
document.write('#intelliresponse #questionForm {margin:0 0 0 150px;padding:0 0 0 0;}');
document.write('#intelliresponse #questionForm p {margin:5px 0 0 65px;padding:0 0 0 0;}');
document.write('#intelliresponse #question {border:1px solid #339;margin:-.5em 0 0 -20px; width: 310px;}');
document.write('#intelliresponse p {margin:0;padding:0 0 0 1em;font-weight:bold;}');
document.write('#intelliresponse #NormalRequest, #intelliresponse #TopQuestionsRequest {margin: 10px 5px 0 0;width:90px;height:22px;position:absolute;border:0;right:2px;cursor:pointer;}');
document.write('#intelliresponse #NormalRequest {background:transparent url(http://www.uwplatt.edu/admission/images/askuwp/submit.gif) no-repeat;top:2px;}');
document.write('#intelliresponse #TopQuestionsRequest {background:transparent url(http://www.uwplatt.edu/admission/images/askuwp/topten.gif) no-repeat;top:24px;}');
document.write('</style>');
document.write('<div id="intelliresponse">');
document.write('<span>Ask A Pioneer!</span>');
document.write('<form id="questionForm" method="post" action="http://uwplatt.intelliresponse.com">');
document.write('<div>');
document.write('<input type="hidden" name="interfaceID" value="1" />');
document.write('<input type="hidden" name="id" value="-1" />');
document.write('<input type="hidden" name="requestType" />');
document.write('<input type="hidden" name="source" value="1" />');
document.write('<input type="text" id="question" name="question" value="" size="45" maxlength="250" onfocus="this.value=\' \';" />');
document.write('<p>Ask real questions like: <em>How do I apply?</em></p>');
document.write('<input type="submit" id="NormalRequest" name="NormalRequest" value="&nbsp;" /><span>Submit</span>');
document.write('<input type="submit" id="TopQuestionsRequest" name="TopQuestionsRequest" value="&nbsp;" /><span>Top 10</span>');
document.write('</div>');
document.write('</form>');
document.write('</div>');
}
drawAskUWP();