// JavaScript Document
var LinksWindow

function OpenLink(theLink)
{
var WindowFeatures = "height=540,width=800,left=50,top=200,menubar=0,location=1,resizable=1,scrollbars=1,status=0, toolbar=0"
	LinksWindow = window.open(theLink, "LinkWindow", WindowFeatures, true)
}


function ShowCareer(theLink) {
    var theFrame = parent.window.getElementByID("BlogsFrame")
    theFrame.href = theLink 
}

// ------- functions called by ActionScript -------
// called to check if the page has initialized and JavaScript is available
function isReady() {
    return jsReady;
}

// called by the onload event of the &lt;body&gt; tag
function DimConnectorInit() {
    // Record that JavaScript is ready to go.
    jsReady = true;
}

function OpenMain(theMain) {
    var MainWindow = window.top.document.getElementById("BlogsFrame")
    if (MainWindow != null) MainWindow.src = theMain 
}
