// JavaScript Document
function changeDiv(divShow, divHide){
if(divShow=='div1')
{
document.getElementById('div1show').value=1;
document.send_frm.submit();
}
else{
document.getElementById('div1show').value=2;
//document.getElementById(div1Show).style.display = 'block';
document.send_frm.submit();
}
document.getElementById(divShow).style.display = 'block';
document.getElementById(divHide).style.display = 'none';
return false;
}