var imgwin;
function zoom(img){
    if((!imgwin) || (imgwin.closed)){
        imgwin=window.open(img,'img',"height=650,width=850,status=no,toolbar=no,menubar=no,location=no,resizable=yes,scrollbars=yes");
    }else{
        imgwin.location.replace(img);
        imgwin.focus();
    }
}
function fix(){
	f=document.getElementById('snd');
	f.action='../send.php';
}
