function open_ova(ovaW,ovaH,URL,TextID) {	//Either URL='' or Text=''
	var info = new Array;
	//Mill
	info[0] = "<p>The water powered English Gate or Frame Saw Mill, built in 1850, is the heart of the O&#39;Hara Pioneer Homestead. Restoration is proceeding and there are plans to have the mill operating on at least one Special Events day in 2009.</p>";
	//Events
	info[1] = "<p>Attend events. See &#39;Coming Events&#39; in the right column.</p>";
	//Visit
	info[2] = "<p>Come to visit. Buildings are open 11 a.m. to 4 p.m. Saturdays and Sundays from May until Thanksgiving weekend. During July and August, buildings are open Tuesday to Sunday from 11 a.m. to 4 p.m. Group rates and tours available.</p>";
	//Volunteer
	info[3] = "<p>Volunteers, someone needs you. The O&#39;Hara Volunteers Association needs you.</p>";
	//School
	info[4] = "<p>Come to school at O&#39;Hara! Teachers bring your class for educational opportunities developed around the Heritage Gardens and the Log School House. Other possibilities exist - just ask.</p>";
	//House
	info[5] = "<p>Tour the restored circa 1850 Victorian farm house built by James O&#39;Hara Jr. and brother-in-law Ben Lear.</p>";
	//Gardens
	info[6] = "<p>Come on over and see the fruits of the labours of the Heritage Gardeners. Words and pictures can not describe the exquisite beauty of the vegetable, fruit, herb and flower gardens. They are a must see indeed.</p>";
	//Homestead Buildings
	info[7] = "<p><center><b>Homestead Buildings</b></center></p><p align='justified'>Seven of the original homestead buildings are now accounted for with six of them being the actual originals. A log house has been obtained and reconstructed on the site of the original one.  An eighth building, a log school house, has been contructed to replace the original O'Hara School that was located a short distance from the homestead.</p>";
	//Nature & Hiking Trails
	info[8] = "<p>There are now four trails located within the O'Hara Mill Pioneer Homestead, including the addition in early 2009 of an interpretive trail. Wildlife abounds. Click the graphic for details.</p>";
	//Geocaching
	info[9] = "<p>Shhhhh. Muggles! Click the graphic to go to the details page.</p>";
	
	info[10] = "<p>Tom Simpson<br />Tel: 613-473-1275</p>";
	info[11] = "<p>Dave Little<br />Tel: 613-967-2466<br />E-mail:  oharachair@ohara-mill.org</p>";
	info[12] = "<p>Stan McEathron<br />Tel: 613-771-9821<br />E-mail:  smceathron@ohara-mill.org</p>";
    info[13] = "<p>Peter Sporring<br />Tel: 613-962-4155<br />E-mail:  oharasawmill@ohara-mill.org</p>";
    info[14] = "<p>Clara<br />E-mail:  oharagardens@ohara-mill.org</p>";
    info[15] = "<p>Dennis Linton<br />Tel: 613-473-1015<br />E-mail:  oharaweb@ohara-mill.org</p>";

	if(URL == ''){
		ova = window.open('ova','Info',"width=400,height=200,left=0,top=0");
		ova.document.open(); 
		ova.document.write("<html><title>OVA Information</title>");
		ova.document.write("<body bgcolor=\"#9adddd\"><font face='Helvetica'>");
		ova.document.write(info[TextID]);
		ova.document.write("</font></body></html>");
		ova.document.close(); 
	}
	else{
		ova = window.open(URL,'Info',"width=800,height=400,left=0,top=0");
	}
	ova.focus(); 
}
function close_ova(){
	ova.close();
}

