var fileName = new Array();
var filePath = new Array();

function openPage(img,teacherName,field){
projects=fileName.length-1;
window_handle = window.open('projects_details.htm','projects','width=600,height=400,status=yes,resizable=yes,toolbar=yes,scrollbars=yes');

window_handle.document.write("<html><head><meta http-equiv='Content-Type' content='text/html; charset=windows-1256'><title>مدرسة الشروق الأهلية</title><link href='style.css' rel='stylesheet' type='text/css'></head>");
window_handle.document.write("<body><table width='100%'  border='0' cellspacing='0' cellpadding='0' dir='rtl'><tr><td>&nbsp;</td><td colspan='2'><br><img src='images/teachers/"+img+"' width='80' height='110' hspace='0' vspace='0' border='0'></td></tr>");
window_handle.document.write("<tr><td>&nbsp;</td><td colspan='2' class='topLinks'>"+teacherName +" | "+field+"</td></tr>");
window_handle.document.write("<tr><td width='3%'><img src='images/spacer.gif' width='10' height='8'></td><td width='3%'>&nbsp;</td><td width='94%'><table width='100%'  border='0' cellspacing='0' cellpadding='0'>");
for (i=1;i<=projects;i++){
window_handle.document.write("<tr><td width='5%' valign='top' class='bottomsep' ><img src='images/loop.gif' width='7' height='10' vspace='2' style='margin-left:5; '></td>");
window_handle.document.write("<td width='95%' class='bottomsep'><a href='"+filePath[i]+"' class='lightlinks'>"+fileName[i]+"</a></td></tr>");
}
window_handle.document.write("</table></td></tr></table></body></html>");

window_handle.location.reload( );
window_handle.focus();

fileName = fileName.slice(0, 1);
filePath = filePath.slice(0, 1);

return false;
}