function openPage(url,width,height,resizable,scrollbar,menubar)
{
	resizable = (!resizable) ? 'no' : 'yes';
	scrollbar = (!scrollbar) ? 'no' : 'yes';
	menubar = (!menubar) ? 'no' : 'yes';
	window.open (url,'openpage','scrollbars='+scrollbar+',menubar='+menubar+',width='+width+',height='+height+',resizable='+resizable+',top=10,left=10');
}
