function dropdown(el, container)
{   
    if ($$('.' + container + ' .content')[0].empty() || $(el).hasClassName('active'))
	   return false;
	
    Effect.toggle(el, 'appear', {
	    duration: 0, 
	    afterFinish: function(){$(container).removeClassName('active');}
    });		
}
function openSizingChart() {
    window.open('http://www.betterthanpants.com/sizing.html' , 'SizinChart', 'menubar=1, scrollbars=1, resizable=1, width=500, height=500')
}


