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 doPrint(theUrl, theQuery){
	if (theQuery == ''){
		theUrl = theUrl+'?print=1';
	}
	else{
		theUrl = theUrl+'?'+theQuery+'&print=1';
	}
    theParms = "width=650,height=400, scrollbars=yes";
	printWin = window.open(theUrl, "print", theParms);
    printWin.focus();
}