/**
 * @author alex.ramlow
 */

function setup_sitesAndSections_EditSection_Check(item, url, SpanID, root_webAddress){
	if (item.longName.value != '' && item.name.value != ''){
		if (	item.longName.value != item.longName_old.value ||
				item.name.value != item.name_old.value) {
			follow_link_NO_LOADER(url, SpanID);
		}
		else {
			follow_link_NO_LOADER(root_webAddress + '/core/core_blank.inc.php', SpanID);
		}
	}
	else {
		follow_link_NO_LOADER(root_webAddress + '/core/core_blank.inc.php', SpanID);
	}
}

function setup_sitesAndSections_EditSite_Check(item, url, SpanID, root_webAddress){
	if (item.siteName.value != '' && item.linkTarget.value !=''){
		if (	item.siteName.value != item.siteName_old.value ||
				item.linkTarget.value != item.linkTarget_old.value){
			follow_link_NO_LOADER(url, SpanID);
		}
		else {
			follow_link_NO_LOADER(root_webAddress + '/core/core_blank.inc.php', SpanID);
		}
	}
	else {
		follow_link_NO_LOADER(root_webAddress + '/core/core_blank.inc.php', SpanID);
	}
}

function setup_sitesAndSections_LinkSection_Check(value, url, SpanID, root_webAddress){
	if (value != 0) {
		follow_link_NO_LOADER(url, SpanID);
	}
	else {
		follow_link_NO_LOADER(root_webAddress + '/core/core_blank.inc.php', SpanID);
	}
}
