function OpenWin(URL,nome,w,h,resize,scroll,status) {
 window.open(URL,nome,"width="+w+",height="+h+",toolbar=no,scrollbars="+scroll+",resizable="+resize+",status=="+status+",directories=no,menubar=no,location=no");
}

function OpenWinBackOffice(URL,nome,w,h,toolbar,scroll,resize,status) {
 window.open(URL,nome,"width="+w+",height="+h+",toolbar="+toolbar+",scrollbars="+scroll+",resizable="+resize+",status=="+status+",directories=no,menubar=no,location=no");
}

function empacotar(coleccao,dir,nome_file,width,height){
                               
 var newStr, urlStr, re, mostra_coleccao;

	re = / /gi;

	newStr = "/hm/coleccoes/files/item_colection.php?col=" + coleccao + "&dir_imgs=" + dir + "&file=" + nome_file + "&width=" + width + "&height=" + height;
	urlStr = newStr.replace(re,"%20");

	TecWindow=window.open(urlStr,'mostra_coleccao','toolbar=no,scrollbars=no,resizable=yes,status=no,directories=no,menubar=no,location=no,width=400,height=300');
	
                                
}