win = null;

function showForm()
{
	win = new gAWindow( { title:'Request Information', url:'infoform.php',
							modal:false, close:'close',
							pos:{ left:5, top:5},
							size:{height:370, width:550} } );
	win.Show();
}

function closeForm()
{
	win.Close();
}
