

function open_window(newLoc, newWidth, newHeight) 
{
	if(!newWidth)
		var newWidth = 20;
	if(!newHeight)
		var newHeight = 20;
	
	var fromLeft = (document.body.clientHeight - newWidth) / 2;
	

    newWin = window.open(newLoc, "wind", "toolbar=no, location=no, directories=no, menubar=no, scrollbars=no, resizable=no, status=no, top=40, left=40, height=" + newHeight + ", width="+ newWidth);
    newWin.window.focus();
}

