
window.onload = ActivateFlash

function ActivateFlash()
{
    var objects = document.getElementsByTagName("object");
    for (var i = 0; i < objects.length; i++)
    {
      objects[i].outerHTML = objects[i].outerHTML;
    }
} 


function previewBrochure( getUrl, width, height )
{
	window.open( getUrl, 'xlob_preview', 'width=' + (width + 16) + ',height=' + (height +16 )+ ',location=yes,status=no,menubar=no,directories=no,toolbar=no' );
}


