function openClassifiedsFebSpecialWindow()
{
    var w = screen.width, h = screen.height;
    
    var popW = 600, popH = 472;
    
    var leftPos = (w-popW)/2, topPos = (h-popH)/2;
    
    var newWindow = window.open(
                                '/promos/cc_feb_special.html',
                                'cc_feb_special',
                                'width=' + popW + ',height=' + popH + ',top=' + topPos + ',left=' + leftPos + ', location=no, toolbar=no, menubar=no, resizable=no, status=no'
                                );
}

