function popwin(path, wintype) {
//status         The status bar at the bottom of the window.
//toolbar        The standard browser toolbar, with buttons such as Back and Forward.
//location       The Location entry field where you enter the URL.
//menubar        The menu bar of the window
//directories    The standard browser directory buttons, such as What's New and What's Cool
//resizable      Allow/Disallow the user to resize the window.
//scrollbars     Enable the scrollbars if the document is bigger than the window
//height         Specifies the height of the window in pixels. (example: height='350')
//width          Specifies the width of the window in pixels.

	win1 = window.open (path, wintype, "status=0,toolbar=0,location=0,menubar=0,directories=0,resizable=0,scrollbars=0,width=468,height=560,left=1000,top=100");
	win1.moveTo((self.screen.width / 2 - 234), 100);
	
}
