function big_foto(w,h) {
var url='';
var win_name='big';
var features='menubar=no,scrollbars=yes,resizable=yes,top=50,left=100,width='+w+',height='+h;
window.open(url,win_name,features);
}

function LTrim( value ) {
var re = /\s*((\S+\s*)*)/;
return value.replace(re, "$1");
}
// Removes ending whitespaces
function RTrim( value ) {
var re = /((\s*\S+)*)\s*/;
return value.replace(re, "$1");
}
// Removes leading and ending whitespaces
function trim( value ) {
return LTrim(RTrim(value));
}


window.onload = function() {
//alert();
}

function show_i(val, w, h) {
//alert(val);
//img = new Image;
//img.src="/upload/image/fotos/big/"+val;
document.getElementById('im_').src="/upload/image/fotos/big/"+val;
document.getElementById('im_').width=w;
document.getElementById('im_').height=h;
//var loader_rem=new net.ContentLoader("/im.php?i="+val, rem);
}

function rem () {
res=this.req.responseText;
document.getElementById('im_').src="/upload/image/fotos/big/"+res;
}