// JavaScript Document

function openParks(pid) {
	var wd, ht, lf, tp, theURL, ftrs
	wd = 400
	ht = 435
	lf = 275
	tp = 50
	ftrs = "width="+wd+",height="+ht+",left="+lf+",top="+tp;
	theURL = "parks.php?parks="+pid;
	//alert(theURL);
	window.open(theURL,"Parks",ftrs);	
}