function openNewPopup(url, w, h) {
    var _left = 200;
    var _top = 200;
    var _location = 'no';
    var _directories = 'no';
    var _menubar = 'no';
    var _resizable = 'no';
    var _scrollbars = 'no';
    var _status = 'no';
    var _titlebar = 'no';
    var _toolbar = 'no';
        
    window.popupWindow = window.open(url, '_blank', 'width='+w
        +', height='+h+',left='+_left+', top='+_top+', location='+_location
        +', directories='+_directories+', menubar='+_menubar
        +', resizable='+_resizable+', scrollbars='+_scrollbars
        +', status='+_status+', titlebar='+_titlebar+', toolbar='+_toolbar);
        
    return false;
}
function outOfStoc(){
	alert('Acest produs nu se afla in stoc!');
}
function jump(fe)
{
	var opt_key = fe.selectedIndex;
    var uri_val = fe.options[opt_key].value;
    window.open(uri_val,'_top');
    return true;
}