// JScript source code
function changeFramePage(elementID)
{
    if(elementID == "Products")
    {
    window.frames("MainFrame").location = "ProductListing.html";
    }
    if(elementID == "Contacts")
    {
    window.frames("MainFrame").location = "Contacts.html";
    }
    if(elementID == "RequestQuote")
    {
    window.frames("MainFrame").location = "RequestQuote.asp";
    }
}


function funTopUpdatePageInfo(TitleText,ImgSrc,AltTag) 
{
	document.getElementById("LeftPaneHeading").innerHTML = TitleText;
	document.getElementById("LeftPage_Img").src = "/Images/" + ImgSrc;
	document.getElementById("LeftPage_Img").alt = AltTag; 
}