bigphoto = null;
function gallery(src, w, h){
if(window.screen){
 aw=screen.availWidth;
 ah=screen.availHeight;
}else{
 aw=640;
 ah=480;
}
if(bigphoto==null || bigphoto.closed){
 place=
 "left=" + (aw-w)/2 + ","
 +"top=" + (ah-h)/2 + ","
 +"screenX=" + (aw-w)/2 + ","
 +"screenY=" + (ah-h)/2 + ","
 +"width=" + w + ","
 +"height=" + h + ","
 +"innerWidth=" + w + ","
 +"innerHeight=" + h + ","
 +"toolbar=no,"
 +"location=no,"
 +"directories=no,"
 +"status=yes,"
 +"menubar=no,"
 +"scrollbars=no,"
 +"resizable=no"
 bigphoto = window.open("",'photo',place);
}
bigphoto.document.open();
bigphoto.document.clear();
bigphoto.document.write(
"<html><head><title>Premmier Tennis Academy</title>\n"
+"</head><BODY bgcolor=#ffffff>\n"
+"<div id='img' style='position:absolute; left:0; top:0; width:100; height:100px; z-index:2'><img src="+ src +" width=" + w + " height=" + h + " border=0></div>\n"
+"</body></html>"
);
bigphoto.document.close();
bigphoto.focus();
}