// JavaScript Document
<!--opens and centers new window automatically

<!-- 

var w = 517, h = 365;

if (document.all || document.layers) {
   w = screen.availWidth;
   h = screen.availHeight;
}

var popW = 517, popH = 365;

var leftPos = (w-popW)/2, topPos = (h-popH)/2;
       
     function launchWindow(launchURL, name) {
     window.open('carrello.htm','carrello','width=517,height=365,top=' + topPos + ',left=' + leftPos + ',screenX=5,screeny=5,directories=no,location=no,menubar=no,scrollbars=yes,status=no,toolbar=no,resizable=no');
}
//-->

<!-- end open window script -->