function popupWindow(url, width, height, resizable, scrollbars, title)
{
	 window.open(url, title, 'status=0, toolbar=0, location=0, menubar=0, directories=0, resizeable=' + resizable + ', scrollbars=' + scrollbars + ', height=' + height + ', width=' + width);
}