function openFoto(c, w, h){
	cFotoName = c.toLowerCase();
	theUrl = "pic.php?cPath=pics/big_"+cFotoName;
    theParms = "width="+w+",height="+h;
	fotosWin = window.open(theUrl, "pic", theParms);
    fotosWin.focus();
}

function openPic(c, w, h, galeryId){	
	theUrl = "pic.php?cPath="+c+"&galeryId="+galeryId;
	h = h + 50;
    theParms = "width="+w+",height="+h;
	fotosWin = window.open(theUrl, "pic", theParms);
    fotosWin.focus();
}

function openDiashow(galeryId)
{
	var w = 900;
	var h = 650;
	theUrl = "diashow.php?galeryId="+galeryId;
	theParms = "width="+w+",height="+h;
	fotosWin = window.open(theUrl, "pic", theParms);
	fotosWin.focus();
}

	
function doSaveGalery(fName){
	document.getElementById('feedback').style.visibility = 'visible'; 
	document.getElementById('feedbackSdw').style.visibility = 'visible'; 

	if(document.theForm.elements["sc"+fName]){
            isSourceCode = document.theForm.elements["sc"+fName].checked;
      }
      else{
            isSourceCode = false;
      }
	iView=document.getElementById("iView"+fName);
	
	if(isSourceCode){
		var $contentHTML =   iView.innerText;
	}
	else{
		var $contentHTML = iView.innerHTML;
	}
      document.theForm.elements("content_html").value = $contentHTML
      //document.theForm.action = "saverecord_proc.php";
      document.theForm.submit();
}
/*

window.status="Loading File...";
var loaded = false;
picturesA = new Array();
var textpicPath = "../../media_editors/textpic_f/";
*/




