function openPopup(url, title, width, height)
{
	popup1 = window.open(url, title, "width="+width+",height="+height+"");
	popup1.focus();
}

