<!-- PLIAZA
function show_div(my_div, total){
	for(i=1;i<=total;i++){
		var my_id = "contact" + i;
		if(i == my_div){
			if(document.getElementById(my_id).style.display != ""){
				document.getElementById(my_id).style.display = "";	
			}else{
				document.getElementById(my_id).style.display = "none";
			}
		}else{
			document.getElementById(my_id).style.display = "none";
		}	
	}
}
//-->



// functia de deschidere a ferestrei :
function openwind(file_link, window_name, width, height, scrollbar) {
	var parameters;
	var winx = (screen.width - width) / 2;
    var winy = (screen.height - height) / 2;
	
	parameters = "width="+width+", height="+height+", top="+winy+", left="+winx+", status=no, scrollbars="+scrollbar;
	
	win = window.open(file_link,window_name,parameters);
	win.window.focus();
}

// se face deschiderea ferestrei
function openWindow(img, folder) {
	var imgPath = img;
	var imgWidth = 500;
	var imgHeight = 500;
	
	openwind('view_image.php?img='+imgPath, 'image_'+img, imgWidth, imgHeight, 'no');
}
