
function moveme(target) {
	window.location = target;
}
			
function colapseOutside() {
	document.getElementById("SprintScroller").closeMenus(); 
}					
				
function colapseOutside() {
	document.getElementById("SprintScroller").closeMenus(); 
}

function displayFlashContent(obj) {
	//alert('yes');
	var so = new SWFObject(obj, obj, "591", "199", "8", "#000000");
	so.addParam("menu", "false");
	if(!bis.firefox) so.addParam("wmode", "opaque");
	so.write("F_CONTENT");
	document.getElementById("F_CONTENT").style.display = "block";
}

function hideFlashContent() {
	document.getElementById("F_CONTENT").style.display = "none";
}

function init() {
	author = true;
	if (author) setLoginOptions('sso'); 
	
	var deepLinkStrInd = location.search.indexOf('deeplink');								
		if(deepLinkStrInd!=-1)
		{
			var deepLinkStr = getParam ('deeplink');
		//	alert (deepLinkStr);
			if (deepLinkStr == 'launchpad')
			{
				showContent("solutions_launchpad");
				showBSL('bslPop');
			} 
		}
}		

function getParam(arg) {
	q=location.search;
	if (q.indexOf(arg) >= 0) 
	{
		var pntr = q.indexOf(arg) + arg.length + 1;
		if (q.indexOf("&", pntr) >= 0) {
			return q.substring(pntr, q.indexOf("&", pntr));
		} else {
			return q.substring(pntr, q.length);
		}
	} else {
		return null;
	}
}


