/**
 * Formular Validierung
 */
function initValidation()
{
}


/**
 * ... <body onload="onBOL();"> ...
 */
function onBOL()
{
    window.status = "CAD-Konfigurator von CAM&more und odro";
}


function highlight(obj)
{
    obj.style.backgroundColor = '#FAFAD2';
    obj.style.border = "1px solid #E60003";
}


function unhighlight(obj)
{
    obj.style.backgroundColor = '';
    obj.style.border = "1px solid silver";
}


function hover(obj)
{
    obj.style.backgroundColor = '#FAFAD2';
}


function unhover(obj, color)
{
    obj.style.backgroundColor = color;
}


/**
 * PopWindow für DWFViewer
 */
function popUpDWFViwer( genno, type )
{
    window.open("popup.showWebModels.php?genno=" + genno + "&type=" + type, "DWFView", "height = 800, width = 950, toolbar=no, locationbar=no, location=no,personalbar=no,menubar=no,scrollbars=no,status=yes,resizable=no")
}

/**
 * PopWindow für nicht installierte DWFViewer
 */
function popUpNoInstalledViewer( genno, type )
{
    window.open("popup.showWebModelsNoInstalledViewer.php?genno=" + genno + "&type=" + type, "DWFView", "height = 800, width = 950, toolbar=no, locationbar=no, location=no,personalbar=no,menubar=no,scrollbars=no,status=yes,resizable=no")
}


