// open a window to hold profile
var w;

function makeWindow()
 {
/*
		if (w != null)
			{
				w.close();
			}
*/


	//myText="Hello";
		w=window.open("","profile","resizable,status,width=650,height=600,scrollbars");
		w.moveTo(350,0);
	//	w.screenY=0;
		w.focus();

		var d=w.document;

		d.write('<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Wyndham Primary School - Welcome from Headteacher Mrs Redhead</title><link rel = "stylesheet" type = "text/css" href = "styles/style.css"><style type = "text/css">body {background-color:#f0f0f0} p {font-size:10pt;padding-left:20px;padding-right:10px;color:#17653d} h2 {padding-left:20px;padding-right:10px;} .content{top:10px;width:600px;left:0px} ul {font-size:10pt} li {margin-left:30px;padding-left:10px;color:#17653d}</style></head><body>');

		d.write('<div class="content"><h2>Welcome</h2><p>The staff and I are delighted to greet you and your children and hope that you will feel at ease in visiting Wyndham Primary School. Our school caters for boys and girls between the ages of three and eleven years. It is part of the Kenton Partnership of schools. We also run a Tots and Playgroup. We look forward to meeting you on many occasions during the coming years. We hope you will enjoy sharing with us the pleasure that your children experience as they learn at primary school.</p><p>Our statement of intent is to provide:</p><ul><li>An excellent education for all pupils. Ensuring that pupil\'s basic skills are of the highest order and that their curriculum is enriched by a wide variety of cultural and sporting experiences. Preparing pupils for the next stage of their education by helping them to communicate effectively and equipping them with study skills and lively, enquiring minds.</li><li>An atmosphere of harmony where pupils can learn self discipline and develop good personal standards and social behaviour<?li><li>Equal opportunities for all pupils to learn, irrespective of gender, race or special educational need.</li><li>A caring environment in modern surroundings, where pupils, parents and staff, will be happy, secure and enthusiastic about learning.</li><li>A welcome to parents as partners in their children\'s education</li><li>A school that is used and valued by the local community as an integral part of its neighbour hood.</li><p>With our best wishes</p><p>Mrs Barbara Redhead<br>Headteacher</p></div>');



		d.write('</body></html>');

		d.close();


	}

function closeWindow()
	{
		if (w != null)
			{
				w.close();
			}
	}