
function AAL_Window(message) {
//Define Date to display in local syntax
	now = new Date();
	LocalTime = now.toLocaleString();

//Define contents of page
	contents=
		'<body bgcolor="beige">'+
		'<h2>Hello</h2>'+
		'Click on the message below to close this window<br>'+
		'<A HREF="javascript:window.close()" >'+
		message +
		'</A>'
		
//Create new Window
	options = "toolbar=0,status=0,menubar=0,scrollbars=1," +
			"resizable=0,width=300,height=200";
	newwindow=window.open("","mywindow", options);
	newwindow.document.writeln(LocalTime);
	newwindow.document.write(contents);
	newwindow.document.close();
}
	
function XAAL_Window() 
{
	options = "toolbar=0,status=0,menubar=0,scrollbars=1," +
			"resizable=0,width=600,height=400";

	newwindow=window.open("../AboutAstroLunch.html","mywindow",options);
}
function XAAL(file,xw,xh) 
{

	options = "toolbar=0,status=0,menubar=0,scrollbars=1," +
			"resizable=0,width=300,height=200";

	options0 = "toolbar=0,status=0,menubar=0,scrollbars=1," +
		  "resizable=0,"+
                  "width=" + xw +
                  ",height=" + xh ;
	options2 = "toolbar=0,status=0,menubar=0,scrollbars=1," +
		  "resizable=0,"+
                  "width=400,height=300";

        html ='<body bgcolor="beige">'+
		'<h2>Hello</h2>'+
             '<p>'	+
             options 	+
            '<p>' + options0 + '</p>' +
             '</p>'	;
             
//	newwindow=window.open("","mywindow",options);
//	newwindow.document.write(html);
//	newwindow.document.close();
	newwindow=window.open(file,"mywindow",options0);
}



