	// This is the function that will open the
	// new window when the mouse is moved over the link
	function open_new_url(text1) 
	{
		new_ext_window = open("http://www.siliconJazz.com/GMTWeb/eventEdit.html","hoverwindow","width=350,height=150,left=10,top=10");

		// close the document
		//new_ext_window.close(); 
	}
	
	// This is the function that will open a new window and jump to the specified URL
	function open_new_window(text1) 
	{
		new_window = open("","hoverwindow","width=350,height=225,left=350,top=225");
		
		// open new document 
		new_window.document.open();
		
		// Text of the new document
		// Replace your " with ' or \" or your document.write statements will fail
		new_window.document.write("<html><title>Edit Calendar</title>");
		new_window.document.write("<body bgcolor=\"#FFFFFF\">"); 
		new_window.document.write(text1);
		new_window.document.write("<br>");
		new_window.document.write("</body></html>");
		
		// close the document
		new_window.document.close(); 
	}	

	// This is the function that will close the
	// new window when the mouse is moved off the link
	function close_window() 
	{
		new_window.close();
	}
	