function showObjective(fsDivID)
{
	
    hideAll();
    document.getElementById(fsDivID).style.display='inline';
}
function hideAll()
{
	if(document.getElementById('apDiv1'))
    	document.getElementById('apDiv1').style.display='none';
	if(document.getElementById('apDiv2'))
		document.getElementById('apDiv2').style.display='none';
	if(document.getElementById('apDiv3'))
		document.getElementById('apDiv3').style.display='none';
}
function hideObjective()
{
    hideAll();
}
function openWin1(url)
{
var j=window.open(url,"jj","left=20, top=20, width=600,height=605,scrollbars=0") 
}
function openWinPop(url)
{
var j=window.open(url,"jj","left=100, top=100, width=510,height=610,scrollbars=0") 
}
function invoice(url)
{
var j=window.open(url,"jj","left=20, top=20, width=925,height=615,scrollbars=1") 
}

function showHide(id1, id2)
{
    document.getElementById(id1).style.display='block';
    document.getElementById(id2).style.display='none';
}


