function openExternalLink(exLink, name) {
	window.open(exLink, name);
}
function gotoLocation(obj, location){
	
	if( location.charAt(0) == '#' && obj != null) {
		obj.onclick();
	} else {
		window.location = location;
	}
}

function disableSubmit(objName) {
	if (objName != null) {
		obj = document.getElementById(objName);
		if( obj != null) {
			obj.className = "disabledSubmit";
			obj.disabled = true;	
		} 
	} 
	return true;
}