// JavaScript Document  //

//--> Start Photo Details //
function getLargeImg(gID,pID) {
	var winw = 680;
	var winh = 500;
	var winl = (screen.width-winw)/2;
	var wint = (screen.height-winh)/2;
	if (winl < 0) winl = 0;
	if (wint < 0) wint = 0;
	var	locate = "photo-details.php?gid="+gID+"&start="+pID;
	var	win = window.open(locate,"PhotoDetails","width="+winw+",height="+winh+",scrollbars=0,left="+winl+",top="+wint+"");
	win.focus();	
}
// END Photo Details <--//}