function openMyWindow( pageToLoad, winName, width, height,
center) 
{ 
xposition = ((screen.width  - width )/2);
yposition = ((screen.width  - width )/2) - 200;
res=(center)?0:1;

args = "width=" + width + "," 
+ "height=" + height + "," 
+ "location=0," 
+ "menubar=0,"
+ "resizable=0,"
+ "scrollbars=0,"
+ "AddressBar=0," 
+ "status=1," 
+ "statusbar=0," 
+ "titlebar=0,"
+ "toolbar=0,"
+ "hotkeys=0,"
+ "FullScreen=0,"
+ "screenx=" + xposition + "," //NN Only
+ "screeny=" + yposition + "," //NN Only
+ "left=" + xposition + "," //IE Only
+ "top=" + yposition; //IE Only 

window.open( pageToLoad,winName,args ); 
//  "+res+"
//  ? ((screen.width - width) / 2) :0
//  ? ((screen.height - height)/2) :0

}

//
//

var str=""
function setMessage()
{
        if(str=="")
        {
                for(var ii=0; ii< 120;ii +=9){str=str+"          " }
                str=str+">>> S. C. Grup Atyc S.R.L. <<<"
        }
        else
        {
                str=str.substring(1,str.length)
        }
        window.status=str
        JSCTimeOutID=window.setTimeout('setMessage()',100)
}

