function popUp(url, width, height)
{
	var str="directories=no,location=no,resizable=no,scrollbars=yes,status=no,toolbar=no,width="+width+",height="+height;
	win = window.open(url, "", str);
	win.window.focus();
}
