// dojo configuration settings.
var isDebug = false;
if(location.hostname=="sitepub.swntdomain.sw.org") 		isDebug = true;
if(location.hostname=="sitepubdev.swntdomain.sw.org") 	isDebug = true;
var parseOnLoad = true;
/*
 * sIFR does not get along with dojo's debug mode in ie6 so sIFR gets disabled.
 * */
try{
	if(isDebug){
		if(typeof sIFR=="function"){
			if (navigator.appVersion.indexOf("MSIE 6")!=-1)	sIFR.bIsDisabled = isDebug;
		}
	}
}catch(e){
	try{console.error(e);}catch(ee){}
}
try{
	if(typeof djConfig!="object"){
		djConfig = {
				isDebug:		isDebug, 
				parseOnLoad:	parseOnLoad};		
	}
}catch(ee){
	try{console.error(ee);}catch(eee){}
}
