// Common functions used in website.


// Popup Window function
function showWindow (message) {
//	OpenWindow=window.open(message, "newwin", "height=450, width=450,toolbar=no,scrollbars=yes,menubar=no");
	OpenWindow=window.open(message, "newwin", "height=450, width=450,toolbar=no, menubar=no, scrollbars=yes,resizable=yes,location=no, directories=no, status=no");
/*	OpenWindow.document.write("<TITLE>Title Goes Here</TITLE>")
	OpenWindow.document.write("<BODY BGCOLOR=pink>")
	OpenWindow.document.write("<h1>Hello!</h1>")
	OpenWindow.document.write("This text will appear in the window!")
	OpenWindow.document.write("</BODY>")
	OpenWindow.document.write("</HTML>") */

	OpenWindow.document.close()
	self.name="main"
     }

