var locationPath = "../../";
var languagePath = "../";
var noOfBanner = 7;
//var printPage = getPrintPage();

function getPrintPage(){
	if(location.href.toString().toLowerCase.match('?action=print') >= 0){
		return true;
	}
	else{
		return false;
	}
}

function getHomeLocation(){
	var currentUrl = window.document.location.toString().toLowerCase();
	var homeUrl = currentUrl;
	
	var homePathIndex = -1;
	if(currentUrl.indexOf("/sc/") != -1){
		homePathIndex = currentUrl.indexOf("/sc/");
	}
	if(currentUrl.indexOf("/en/") != -1){
		homePathIndex = currentUrl.indexOf("/en/");
	}
	
	if(homePathIndex != -1){
		homeUrl = currentUrl.substring(0, homePathIndex)+"/";
	}
	return homeUrl;
}

function getLanguagePath(){
	var urlPath = window.document.location.toString();
	if(urlPath.match("/en/") != null){
		return "en/";
	}
	else if(urlPath.match("/sc/") != null){
		return "sc/";
	}
}
