function getcenesite()
{
var CeneTitleSPA = 'Cenefas';
var CeneTitleENG = 'Cenefas';
var CeneUrl = '/ColorLife/Tools/Cenefas/Default.aspx';//'/ebusiness/cenefas/index.htm';
var CeneWindowName = 'Ambienta';//'CeneSite';
var CeneHeight = 650;//578;
var CeneWidth = 967;//767;
//window.location.href= CeneUrl;
openurl(CeneUrl, CeneWindowName, CeneHeight, CeneWidth);
}

function getambientasite()
{
var AmbientaTitleSPA = 'Ambienta';
var AmbientaTitleENG = 'Ambienta';
var AmbientaUrl = '/ColorLife/files/flash/AmbientaSplash/Default.aspx';
var AmbientaWindowName = 'Ambienta';
var AmbientaHeight = 487;
var AmbientaWidth = 867;
openurl(AmbientaUrl, AmbientaWindowName, AmbientaHeight, AmbientaWidth);
}

function openurl(url,windowname,popH,popW)
{
    var w = 800, h = 600;
    if (document.all || document.layers)
    {
       w = screen.availWidth;
       h = screen.availHeight;
    }
    if(popH==0 && popW==0)
    {
       popW = screen.availWidth;
       popH = screen.availHeight;
    }
    var leftPos = (w-popW)/2, topPos = (h-popH)/2;

    wOpen = window.open(url,windowname,'location=no,resizable=no,alwaysraised,width='+popW+',height='+popH+',top='+topPos+',left='+leftPos);
}

