function SelectAll(id)
{
    document.getElementById(id).focus();
    document.getElementById(id).select();
}
function popup(url) {
	newwindow=window.open(url,'Vizualizare produs','width=800, height=800, status=no, toolbar=no, menubar=no, resizable=no, scrollbars=yes, screenX=300, screenY=300');
	if (window.focus) {newwindow.focus()}
	return false;
}
function popchat(url) {
	newwindow=window.open(url,'Vizualizare produs','width=600, height=600, status=no, toolbar=no, menubar=no, resizable=no, scrollbars=yes, screenX=150, screenY=150');
	if (window.focus) {newwindow.focus()}
	return false;
}
function popreg(url) {
	newwindow=window.open(url,'Vizualizare produs','width=800, height=600, status=no, toolbar=no, menubar=no, resizable=no, scrollbars=yes, screenX=150, screenY=150');
	if (window.focus) {newwindow.focus()}
	return false;
}
function toggle_visibility(id) {
    var e = document.getElementById(id);
    if(e.style.display == 'block')
        e.style.display = 'none';
    else
        e.style.display = 'block';
}
