function set_public(){
	var status = document.getElementByName('pic_public').value;
	var button_status = document.getElementByName('button_public').value;
	
	alert(status);
	
	if (status==0){
		document.getElementByName('pic_public').value = 1;
		document.getElementByName('button_public').value = 'SET_TO_NOT_PUBLIC';
	}
}

function load_image(num1)
	    {
			//window.alert(num1);
			//window.open(num1,'mywindow','width=500,height=500')
			ajaxpage(num1, 'cont')
	        return num1;
	    }


function show(id) {
			var e = document.getElementById(id);
			e.style.display = e.style.display == "none" ? "" : "none";
}
