/********************************************************************/
function getBreadCrumb() {
	//var str = breadCrumb.replace(/<SEP>/gi, '&nbsp;<img src="/images/global/breadcrumb_arrow.gif" align="absmiddle"/>&nbsp;');
//	alert('breadcrumb');
	var str = breadCrumb.replace(/<SEP>/gi, '&nbsp;//&nbsp;');
	return str;
}

// 

function removeinput(x) {
	if (x.value == 'dd/mm/yyyy') {
	x.value = '';
	}
	if (x.value == '555-123 4567') {
	x.value = '';
	}
	if (x.value == 'A1B 2C3') {
	x.value = '';
	}
	if (x.value == 'test') {
	x.value = '';
	}
	
}

function checkPrint(){
	var el = document.getElementById("hdr_logo");
	var left = document.getElementById("leftcol");
	var address = location.href;
	var printMode = address.split("print=");
	if (printMode[1] == "true"){
		if (typeof(document.getElementById("RightColumnAdd")) != "undefined" &&
			document.getElementById("RightColumnAdd") != null)
			document.getElementById("RightColumnAdd").style.display = "none"
		if (typeof(document.getElementById("PageContentTable")) != "undefined" &&
			document.getElementById("PageContentTable") != null)
			document.getElementById("PageContentTable").style.width = "100%"

		el.style.display = "none";
		left.className = "leftnav_col_print";
		this.print();
		this.close();
	} else {
		el.style.display = "block";
		left.className = "leftnav_col";
	}
}

	function checkPrintInterview(){
			var el = document.getElementById("hdr_logo");
			var left = document.getElementById("leftcol");
			var container = document.getElementById("container");
			var address = this.location.href;
			var printMode = address.split("print=");
			if (printMode[1] == "true"){
				el.style.display = "none";
				left.className = "leftnav_col_print";
				container.className ="container_print";
				this.print();
				this.close();
			} else {
				el.style.display = "block";
				left.className = "leftnav_col";
			}
		}

function highlightNav(whichSection){
	el = document.getElementById("nav"+whichSection);
	if(el != null){
		el.className = "blocknav_on "+ whichSection + "_on";
	}
}