﻿// JScript File
//This JavaScript Represents the functions used by a Content Block
//Please View Associated CSS [Theme]/Administrative/ContentBox.css
//

function CB_OnMouseOver(item,pnl)
{
    //Change The Item's Style CSS
    item.className = "CB_EditHover";
 
    //Show Control Menu
    document.getElementById(pnl).style.visibility = "visible";
}

function CB_OnMouseOut(item,pnl)
{
    //Change The Items Style CSS
    item.className = "CB_Editable";
    
    //Hide the Control Menu
    document.getElementById(pnl).style.visibility = "hidden";
    
}

function launchEditor(URL,Name) {
    window.open(URL,Name,'scrollbars=no,resizable=yes,width=600,height=400');
}