function show_file(name,path){
	var wsize = 780;
	var hsize = 480;
	var l=(screen.width-wsize)/2;
	var t=((screen.height-100)-hsize)/2;
	loc = "download.php/"+path;
	childwin = window.open (loc,'NewWin',"resizable=1, scrollbars=1, width="+wsize+", height="+hsize+", menubar=1, toolbar=0, left="+l+", top="+t);
}

function show_Photofile(name,path){
	var wsize = 780;
	var hsize = 480;
	var l=(screen.width-wsize)/2;
	var t=((screen.height-100)-hsize)/2;
	loc = "../download.php/"+path;
	childwin = window.open (loc,'NewWin',"resizable=1, scrollbars=1, width="+wsize+", height="+hsize+", menubar=1, toolbar=0, left="+l+", top="+t);
}

