var newwindow;
function popUp(url)
{
	newwindow=window.open(url,'name','height=50,width=150,left=100, top=150');
	if (window.focus) {newwindow.focus()}
}