// 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>Stannington First School - Welcome from Headteacher Mrs Ramm</title><link rel = "stylesheet" type = "text/css" href = "styles/style.css"><style type = "text/css">p {font-size:10pt;padding-left:20px;padding-right:10px;color:#000000} h2 {padding-left:20px;padding-right:10px;color:#ff0000;font-size:12pt} .content{top:20px;width:600px;left:0px} ul {font-size:10pt} li {margin-left:30px;padding-left:10px} .listRed {color:#ff0000} .listRed li{color:#ff0000} .listBlue {color:#0000ff} .listBlue li{color:#0000ff} .listGreen {color:#00a000} .listGreen li{color:#00a000} .listPurple {color:#ff00ff} .listPurple li{color:#ff00ff}</style></head><body>');
		
		d.write('<div class="content"><h2>Welcome to the Stannington First School website . . . . . </h2><p>I hope that you enjoy taking a look at our website.  We have tried to include the important information you need to know, but also hope that you can experience a flavour of school life at our school.</p><p>Here at Stannington First School we work hard as a team of committed staff and governors, with the help of parents, so that children can be:</p><ul class="listRed">Happy<li>feeling comfortable, safe and secure</li><li>coming to school</li><li>having fun with friends</li><li>finding enjoyment in ordinary life</li></ul><ul class="listBlue">Enthusiastic<li>doing their very best</li><li>enjoying and celebrating success</li><li>being busy, energetic and engrossed</li><li>having a thirst for learning</li><li>joining in and being involved</li></ul><ul class="listGreen">Kind and Respectful<li>listening to each other</li><li>looking after and helping each other</li><li>being polite, well mannered and self controlled</li><li>enjoying each person`s individuality</li></ul><ul class="listPurple">Responsible<li>looking after belongings, property and the school</li><li>doing things - even when they don`t want to</li><li>looking after themselves</li><li>saying sorry when they are wrong</li><li>being punctual and following the school rules</li></ul><ul class="listRed">Confident<li>seeking advice and asking for help</li><li>being brave, speaking up and smiling</li><li>Accepting the need to make mistakes but to have a go anyway</li><li>telling someone when they are upset</li></ul><ul class="listBlue">Learning together<li>being involved in the learning process</li><li>learning from each other</li><li>striving for the highest standards</li><liworking comfortably and individually, in pairs and in groups></li><li>trying new things and enjoying working hard</li></ul><p>Please don`t hesitate to contact me if you have any questions, suggestions or concerns.</p><p>Christine Ramm<br>Headteacher</p></div>');
	
	
	
		d.write('</body></html>');

		d.close();


	}

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