var openImg = new Image();		openImg.src = "images/arrow_opened.gif";
var closedImg = new Image();	closedImg.src = "images/arrow_closed.gif";

function doBranch(branch, img)
{
 var objBranch = document.getElementById(branch).style;
 if(objBranch.display=="block") objBranch.display="none";
 else objBranch.display="block";
 objImg = document.getElementById(img);
 if(objImg.src.indexOf('images/arrow_closed.gif')>-1) objImg.src = openImg.src;
 else objImg.src = closedImg.src;
}


function PrintPage(page){
 window.open(page,"PrintPage","toolbars=0,manubar=1,scrollbars=1,directories=0,location=0,resizable=1,width=700,height=500,left=40,top=40");
}


function InSpan1(theSpan){
 theSpan.className='spanIn1';
}

function OutSpan1(theSpan){
 theSpan.className='spanOut1';
}

function InSpan2(theSpan){
 theSpan.className='spanIn2';
}

function OutSpan2(theSpan){
 theSpan.className='spanOut2';
}


function PrintPage(page){
 window.open(page,"PrintPage","toolbars=0,manubar=1,scrollbars=1,directories=0,location=0,resizable=1,width=700,height=500,left=40,top=40");
}

function SendMail(ID){
 page = "send_mail.asp?ID=" + ID;
 window.open(page,"SendMail","toolbars=0,manubar=1,scrollbars=1,directories=0,location=0,resizable=1,width=400,height=500,left=40,top=40");
}

function DoDemo(){
 window.open("demo.html","Demo","toolbars=0,manubar=1,scrollbars=1,directories=0,location=0,resizable=1,width=775,height=485,left=40,top=40");
}
