﻿// JScript File
function showareas(id){
    for (i=1;i<=10;i++){
        document.getElementById('div'+i).className='cArea'
    }
        document.getElementById('div'+id).className='sArea';
        location.href = '#b'+id;
    }
    
var theForm = document.forms['aspnetForm'];
if (!theForm) {
    theForm = document.aspnetForm;
}

function __doPostBack(eventTarget, eventArgument) {
    if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
        theForm.__EVENTTARGET.value = eventTarget;
        theForm.__EVENTARGUMENT.value = eventArgument;
        theForm.submit();
    }
}

