function newPopup(link, width, height,title)
{
	var parameters =
	'width=' + (Number(width)) +
	',height=' + (Number(height)) +
	',toolbar=no,location=no,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,copyhistory=0';
	var newwindow = window.open(link, title, parameters);
	if(window.focus) {newwindow.focus()}
}