
function newImg(img) {
        window.open("/newwin.php?img="+img,"","width=400,height=400,resizable,scrollbars=no,status=0");
}

function changeVisibility(id1,id2){
                if (document.getElementById(id1).checked){
                   document.getElementById(id2).style.display="block";
                } else {
                    document.getElementById(id2).style.display = "none";

                }
		            }


function sort(targetId,way) {
	if (document.getElementById(targetId)) {
		key = '&'+targetId+'='+document.getElementById(targetId).options[document.getElementById(targetId).selectedIndex].value;
	}
	if (way != 1 ) way = 0;

	window.location='?sort_way='+way+key;
}

function winPrint() {
	window.print();
	/*if (!window.print()) {
		document.execCommand('print',false,null);
	}*/
}
