// JavaScript Document

//Begin section CSS coding
var path = window.location.pathname;
var css;

if (path.match('products')) { css = "gold"; }
if (path.match('opportunities')) { css = "tan"; }
if (path.match('showcase')) { css = "green"; }
if (path.match('knowledgecenter')) { css = "plum"; }
if (path.match('support')) { css = "tan"; }
if (path.match('company')) { css = "grey"; }
document.write("<link href=\"/css/" + css + ".css\" rel=\"stylesheet\" type=\"text/css\" media=\"screen\" />");
//End section CSS coding


document.domain = "leadfusion.com";

if (location.hostname != null ) {
    var hname = location.hostname.toLowerCase();
    if ( hname == "leadfusion.com" || hname.indexOf("leadfusionexperience.com") > -1) {
         location.hostname = "www.leadfusion.com";
    }
}

da_image = new Image();
da_image.src="/images/lficon.ico";

function test_lc()
{
window.open("/swf/testimonial_lee_carter.jsp","_blank","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=yes, width=580, height=550, left=100, top=100")
}
function email_flash()
{
window.open("/swf/email_flash_presentation.jsp","_blank","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=yes, width=750, height=600, left=100, top=100")
}
function newWindow(url) {
window.open(url, "_blank", "toolbar=yes, menubar=yes, location=yes, scrollbars=yes, resizable=yes, left=0, top=0");
}

function sidebarSize() {
	var main = document.getElementById("content");
	var side1 = document.getElementById("sidebar_nav");
	var side2 = document.getElementById("sidebar_right");
	if (main.offsetHeight > side1.offsetHeight) {
		h = main.offsetHeight - 20;
		side1.style.height = h+"px";
	}
	if (main.offsetHeight > side2.offsetHeight) {
		h = main.offsetHeight - 10;
		side2.style.height = h+"px";
	}
}