function popup(url,width,height)
{
	var feat = "width=" + width + ",height=" + height;
	newWindow = window.open(url,"",feat);
	newWindow.focus();
}