//simplified way of using\calling dwr.util.setValue
function setDwrValue(varName,value){
	dwr.util.setValue(varName,value);
}
//simplified way of using\getting dwr.util.getValue
function getDwrValue(varName){
	return dwr.util.getValue(varName);
}


function hideRemainingDivs(){
		$("#firstDiv").show();
		//$("#attchDiv").show();
        $("#secondDiv").hide();
}

function trackUser(index, hdiLink, hdiTitle, target)
{
		alert("################test123#################");
		alert("##############index#####################"+index);
		alert("##############hdiLink#####################"+hdiLink);
		alert("##############hdiTitle#####################"+hdiTitle);
		//window.location='/SelfServiceWeb/HowdoiLinks.jsp?hdiLink='+hdiLink+'&hdiTitle='+hdiTitle;

		windowProp = 'width=1014,height=630,scrollbars=no,resizable=no,menubar=no,status=no';
		//windowSize = 'width=1014&height=630';

		//var url = "http://wlc.webex.com/hdi_site/hdiShell.swf?tn=Log In&dir=MC/EN/MC_EN_T27FR17-315&bdir=webex";
		var hdiLink = hdiLink;
		var name = "hdiPopup";
		window.open(hdiLink, name, windowProp)
}


