/* ********************** New window function ************** */

			function popup(){	
			dispPrompt()
			var newWind= window.open("","dynCreate","height=300,width=500");
			newWind.document.write("<html>")
			newWind.document.write("<head>")
			newWind.document.write("<title>"+"PopUp window for JavaScript Homework Two"+"</title>")
			newWind.document.write("</head>")
			newWind.document.write("<body style='background-color: #eeebfb;'>")
			
			newWind.document.write("<h1 style='margin-left: 60px;'>PopUp Window for <br />JavaScript Homework Two</h1>"+"<br />");
/* ************************ date function **************** */			
			var today = new Date();
         newWind.document.write("The time is: "+today.getHours() + ":" + today.getMinutes()+"<br />");
         newWind.document.write("It is&nbsp;" + daysOfWeek[today.getDay()]+ "&nbsp;the&nbsp;" +today.getDate()+ "&nbsp;of&nbsp; " +months[today.getMonth()]+ "&nbsp;"+ today.getFullYear()); 
 		 
/* ********************* browser name and version *****************/
			var browser = navigator.appName;
			var version = navigator.appVersion;
			if (browser.indexOf("Microsoft")!=-1){
				a=0;
				newWind.document.write("<br />"+"The browser is "+browser+" that means the season is "+seasons[a]);				
				}else{
				 a=2;
				 newWind.document.write("<br />"+"The browser is "+browser+" that means the season is "+seasons[a]);
					}
			newWind.document.write("<br />"+"<strong>"+usrInput+"</strong>")
			newWind.document.write("</body>")
			newWind.document.write("</html>")		
			newWind.document.close();
		}		
		/* ************************ Season funtion ************** */	

 				
				

