function flexibleWindow(address, width, height)	{
	win2=window.open(address,"popup","width="+width+",height="+height+",location=0,menubar=1,resizable=1,scrollbars=1,status=0,toolbar=1");
	win2.creator=self;
	win2.focus();
}


